Update of /cvsroot/csdopenglnet/csdOpenGL/tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30177/tools
Modified Files:
Makefile
Log Message:
new build system
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Makefile 11 Sep 2004 08:10:42 -0000 1.7
--- Makefile 20 Oct 2004 09:12:14 -0000 1.8
***************
*** 1,11 ****
FILES=ByteTexture2D.cs AssemblyInfo.cs
- CC=mcs
- DEBUG=/d:DEBUG
- DEBUG=
- OPTS=$(DEBUG)
- MCS=$(CC) $(OPTS)
- PACKAGE=csDragons
- GAC=gacutil $(GACUTIL_FLAGS)
DLL=csDragons.OpenGL.Tools.dll
all: $(DLL)
--- 1,7 ----
+ include ../scripts/Makefile.Init
+
FILES=ByteTexture2D.cs AssemblyInfo.cs
DLL=csDragons.OpenGL.Tools.dll
+ TARGET=../build/
all: $(DLL)
***************
*** 13,16 ****
--- 9,13 ----
$(DLL): $(FILES)
$(MCS) -r:System.Drawing -target:library $(FILES) -out:$@
+ $(CP) $@ $(TARGET)
install: install-gac
***************
*** 25,37 ****
clean:
! rm -f *.exe
! rm -f *.dll
!
! .IGNORE:
! clean
!
! .EXPORT_ALL_VARIABLES:
!
! .PHONY:
! clean
--- 22,25 ----
clean:
! $(RM) *.dll
|