Update of /cvsroot/csdopenglnet/csdOpenGL/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30177/math
Modified Files:
Makefile
Log Message:
new build system
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Makefile 11 Sep 2004 08:10:41 -0000 1.4
--- Makefile 20 Oct 2004 09:12:13 -0000 1.5
***************
*** 1,17 ****
LIBFILES=FVector.cs F4Vector.cs F3Vector.cs FMatrix.cs F4Matrix.cs F3Matrix.cs AssemblyInfo.cs Bezier.cs
- CC=mcs
- DEBUG=/d:DEBUG
- DEBUG=
- OPTS=$(DEBUG)
- LIBS=
- PACKAGE=csDragons
- GAC=gacutil $(GACUTIL_FLAGS)
DLL=csDragons.Math.dll
all: $(DLL)
$(DLL): $(LIBFILES)
! mcs -target:library $(LIBFILES) $(OPTS) -out:$@
!
install: install-gac
--- 1,14 ----
+ include ../scripts/Makefile.Init
+
LIBFILES=FVector.cs F4Vector.cs F3Vector.cs FMatrix.cs F4Matrix.cs F3Matrix.cs AssemblyInfo.cs Bezier.cs
DLL=csDragons.Math.dll
+ TARGET=../build/
all: $(DLL)
$(DLL): $(LIBFILES)
! $(MCS) -target:library $(LIBFILES) $(OPTS) -out:$@
! $(CP) $@ $(TARGET)
!
install: install-gac
***************
*** 26,38 ****
clean:
! rm -f $(DLL)
!
! .IGNORE:
! clean
!
! .EXPORT_ALL_VARIABLES:
!
! .PHONY:
! clean
!
--- 23,26 ----
clean:
! $(RM) $(DLL)
|