#
#              This file is part of the New World OS project
#                  Copyright (C) 2005-2007  QRW Software
#            J. Scott Edwards - j.scott.edwards.nwos@gmail.com 
#                       http://www.qrwsoftware.com
#                       http://nwos.sourceforge.com
# 
#   This program 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 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in 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 program, in the file LICENSE.  If not, see 
#   <http://www.gnu.org/licenses/>.
#
#   You can also contact via paper mail at:
#
#      QRW Software
#      P.O. Box 27511
#      Salt Lake City, UT 84127-0511, USA.
#
# 
#  $Log: Makefile,v $
#  Revision 1.3  2007/07/01 19:44:12  jsedwards
#  Upgrade to GPLv3.
#
#  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

