[Jsmooth-cvs] jsmooth/skeletons/util-net Makefile.win,1.5,1.6
Status: Beta
Brought to you by:
reyes
From: Rodrigo R. <re...@us...> - 2008-10-12 19:32:06
|
Update of /cvsroot/jsmooth/jsmooth/skeletons/util-net In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30866/skeletons/util-net Modified Files: Makefile.win Log Message: fix build cleaning Index: Makefile.win =================================================================== RCS file: /cvsroot/jsmooth/jsmooth/skeletons/util-net/Makefile.win,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.win 16 May 2007 22:04:19 -0000 1.5 --- Makefile.win 12 Oct 2008 19:31:59 -0000 1.6 *************** *** 1,34 **** ! # Project: CommonJava ! ! PROJECTNAME=util-net ! RM = rm -f ! CPP = g++.exe ! CC = gcc.exe ! WINDRES = windres.exe ! MINGW = "c:/MinGW" ! FLTK-LDFLAGS = $(shell fltk-config --ldflags) ! FLTK-CXXFLAGS = $(shell fltk-config --cxxflags) ! RES = ! OBJ = WinHttpClient.o HttpClient.o URL.o downloadgui.o httpdownload.o $(RES) ! LIBS = -L"$(MINGW)/lib" -L"/lib" -lws2_32 -lwininet $(FLTK-LDFLAGS) ! CXXINCS = -Os -I"../util-core" -I"$(MINGW)/include/c++" -I"$(MINGW)/include/c++/mingw32" -I"$(MINGW)/include/c++/backward" -I"$(MINGW)/include" -I"$(JDK)/include" -I"$(JDK)/include/win32" $(FLTK-CXXFLAGS) ! BIN = $(PROJECTNAME).a ! CXXFLAGS = $(CUSTOMFLAGS) $(CXXINCS) -DJDK="$(JDK)" ! ! .PHONY: all all-before all-after clean clean-custom $(PROJECTNAME) ! ! all: all-before $(PROJECTNAME).a testmain.cpp all-after ! ! clean: clean-custom ! $(RM) $(OBJ) $(BIN) test.exe testmain.o ! ! $(BIN): $(OBJ) ! ar r $(BIN) $(OBJ) ! ranlib $(BIN) ! $(CPP) -g $(OBJ) ../util-core/util-core.a testmain.o -o test.exe $(LIBS) ! ! $(PROJECTNAME).a: $(OBJ) testmain.o ! ! ! testmain.o: testmain.cpp ! $(CPP) -c testmain.cpp -o testmain.o $(CXXFLAGS) --- 1,34 ---- ! # Project: CommonJava ! ! PROJECTNAME=util-net ! RM = rm -f ! CPP = g++.exe ! CC = gcc.exe ! WINDRES = windres.exe ! MINGW = "c:/MinGW" ! FLTK-LDFLAGS = $(shell fltk-config --ldflags) ! FLTK-CXXFLAGS = $(shell fltk-config --cxxflags) ! RES = ! OBJ = WinHttpClient.o HttpClient.o URL.o downloadgui.o httpdownload.o $(RES) ! LIBS = -L"$(MINGW)/lib" -L"/lib" -lws2_32 -lwininet $(FLTK-LDFLAGS) ! CXXINCS = -Os -I"../util-core" -I"$(MINGW)/include/c++" -I"$(MINGW)/include/c++/mingw32" -I"$(MINGW)/include/c++/backward" -I"$(MINGW)/include" -I"$(JDK)/include" -I"$(JDK)/include/win32" $(FLTK-CXXFLAGS) ! BIN = $(PROJECTNAME).a ! CXXFLAGS = $(CUSTOMFLAGS) $(CXXINCS) -DJDK="$(JDK)" ! ! .PHONY: all all-before all-after clean clean-custom $(PROJECTNAME) ! ! all: all-before $(PROJECTNAME).a testmain.cpp all-after ! ! clean: clean-custom ! $(RM) $(OBJ) $(BIN) test.exe testmain.o ! ! $(BIN): $(OBJ) ! ar r $(BIN) $(OBJ) ! ranlib $(BIN) ! $(CPP) -g $(OBJ) ../util-core/util-core.a testmain.o -o test.exe $(LIBS) ! ! $(PROJECTNAME).a: $(OBJ) testmain.o ! ! ! testmain.o: testmain.cpp ! $(CPP) -c testmain.cpp -o testmain.o $(CXXFLAGS) |