Update of /cvsroot/csdopenglnet/csdOpenGL/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13407/math
Modified Files:
Makefile
Removed Files:
MathTest.cs
Log Message:
Restrukturierung
--- MathTest.cs DELETED ---
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile 13 Aug 2004 12:27:06 -0000 1.3
--- Makefile 11 Sep 2004 08:10:41 -0000 1.4
***************
*** 1,4 ****
- destAPPS=MathTest.exe
- destLIBS=csdMath.dll
LIBFILES=FVector.cs F4Vector.cs F3Vector.cs FMatrix.cs F4Matrix.cs F3Matrix.cs AssemblyInfo.cs Bezier.cs
CC=mcs
--- 1,2 ----
***************
*** 9,35 ****
PACKAGE=csDragons
GAC=gacutil $(GACUTIL_FLAGS)
! all: $(LIBS) MathTest.exe
! csdMath.dll: $(LIBFILES)
mcs -target:library $(LIBFILES) $(OPTS) -out:$@
- MathTest.exe: MathTest.cs csdMath.dll
- $(CC) $(OPTS) -r:csdMath.dll MathTest.cs -out:$@
-
install: install-gac
! install-gac: csdMath.dll
! $(GAC) /i csdMath.dll /f /package $(PACKAGE)
uninstall: uninstall-gac
uninstall-gac:
! $(GAC) /u csdMath
clean:
! rm -f $(destAPPS)
! rm -f $(destLIBS)
.IGNORE:
--- 7,30 ----
PACKAGE=csDragons
GAC=gacutil $(GACUTIL_FLAGS)
+ DLL=csDragons.Math.dll
! all: $(DLL)
! $(DLL): $(LIBFILES)
mcs -target:library $(LIBFILES) $(OPTS) -out:$@
install: install-gac
! install-gac: $(DLL)
! $(GAC) /i $(DLL) /f /package $(PACKAGE)
uninstall: uninstall-gac
uninstall-gac:
! $(GAC) /u $(DLL)
clean:
! rm -f $(DLL)
.IGNORE:
|