From: Tim R. <ti...@us...> - 2004-08-13 09:24:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19786/math Modified Files: Makefile Log Message: inserting install Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 12 Jul 2004 17:17:21 -0000 1.1.1.1 --- Makefile 13 Aug 2004 09:24:19 -0000 1.2 *************** *** 1,9 **** destAPPS=MathTest.exe destLIBS=csdMath.dll ! LIBFILES=FVector.cs F4Vector.cs F3Vector.cs FMatrix.cs F4Matrix.cs F3Matrix.cs CC=mcs DEBUG=/d:DEBUG OPTS=$(DEBUG) LIBS= all: $(LIBS) MathTest.exe --- 1,11 ---- 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 DEBUG=/d:DEBUG OPTS=$(DEBUG) LIBS= + PACKAGE=csDragons + GAC=gacutil $(GACUTIL_FLAGS) all: $(LIBS) MathTest.exe *************** *** 14,17 **** --- 16,30 ---- 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: *************** *** 26,27 **** --- 39,42 ---- .PHONY: clean + + |