From: Tim R. <ti...@us...> - 2004-09-11 08:21:15
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15488 Modified Files: Makefile Log Message: corrected error during linking Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 13 Aug 2004 12:27:05 -0000 1.7 --- Makefile 11 Sep 2004 08:21:06 -0000 1.8 *************** *** 1,2 **** --- 1,6 ---- + MONO=mono + WIN=win + PLATFORM=$(MONO) + all: $(MAKE) -C cbonding *************** *** 6,9 **** --- 10,19 ---- $(MAKE) -C math $(MAKE) -C tools + ifeq ($(PLATFORM),$(MONO)) + $(MAKE) -C platform/mono + else + $(MAKE) -C platform/windows + endif + doc: *************** *** 23,26 **** --- 33,41 ---- $(MAKE) -C math install $(MAKE) -C cbonding install + ifeq ($(PLATFORM),$(MONO)) + $(MAKE) -C platform/mono install + else + $(MAKE) -C platform/windows install + endif uninstall: *************** *** 29,32 **** --- 44,53 ---- $(MAKE) -C tools uninstall $(MAKE) -C cbonding uninstall + $(MAKE) -C math uninstall + ifeq ($(PLATFORM),$(MONO)) + $(MAKE) -C platform/mono uninstall + else + $(MAKE) -C platform/windows uninstall + endif clean: |