#              This file is part of the New World OS project
#                 Copyright (C) 2005, 2006  QRW Software
#            J. Scott Edwards - j.scott.edwards.nwos@gmail.com 
#                       http://www.qrwsoftware.com
#                       http://nwos.sourceforge.com
# 
#  NWOS is free software;  you can redistribute it and/or modify it under the
#  terms of the GNU General Public License  as published by the Free Software
#  Foundation; either version 2, or (at your option) any later version.  This
#  software is distributed with the hope that it will be useful,  but WITHOUT
#  ANY WARRANTY;  without  even the  implied warranty  of MERCHANTABILITY  or
#  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License for
#  more  details.  You should have received a copy  of the GNU General Public
#  License along with this package;  see the file COPYING.  If not, write to:
# 
#       Free Software Foundation, Inc.
#       59 Temple Place - Suite 330
#       Boston, MA 02111-1307, USA.
# 
#  $Log: Makefile,v $
#  Revision 1.2  2006/11/11 12:29:19  jsedwards
#  Update e-mail address to something that works.
#
#  Revision 1.1  2006/11/03 04:01:44  jsedwards
#  Compiles convert_csv_to_c_structs from the .c and .h files produced by
#  Fine compiler from convert_csv_to_c_structs.e for those that don't have
#  Fine installed.
#

c_structs.h: convert_csv_to_c_structs
	./convert_csv_to_c_structs

convert_csv_to_c_structs: convert_csv_to_c_structs.h convert_csv_to_c_structs.c
	gcc -Wall -o convert_csv_to_c_structs convert_csv_to_c_structs.c

clean:
	rm -f convert_csv_to_c_structs c_structs.h

