# # Copyright (c) 2005 Jason Tishler # # 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 2 of the License, or # (at your option) any later version. # # A copy of the GNU General Public License can be found at # http://www.gnu.org/ # # Written by Jason Tishler # # $Id: Makefile,v 1.3 2005/01/19 14:50:10 jt Exp $ # all: version cygversion CC = g++ CFLAGS = -O2 -s Files = version.cc Libs = -lversion version: $(Files) $(CC) $(CFLAGS) -mno-cygwin -o $@ $(Files) $(Libs) cygversion: $(Files) $(CC) $(CFLAGS) -o $@ $(Files) $(Libs) clean: $(RM) *.exe