Update of /cvsroot/csdopenglnet/csdOpenGL/Cg
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14957
Modified Files:
Makefile
Log Message:
adaption to new structure
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** Makefile 4 Sep 2004 08:33:44 -0000 1.12
--- Makefile 11 Sep 2004 08:18:01 -0000 1.13
***************
*** 7,27 ****
DEBUG=
OPTS=$(DEBUG)
! MCS=$(CC) $(OPTS)
PACKAGE=csDragons
GAC=gacutil $(GACUTIL_FLAGS)
! all: csdCg.dll
!
! csdCg.dll: $(FILES) csdGL.dll
! $(MCS) -target:library -r:csdGL.dll $(FILES) -out:$@
!
! csdGL.dll:
! ln -sf ../GL/csdGL.dll
! libcsdCg.so:
! ln -sf ../cbonding/libcsdCg.so
- libcsdGL.so:
- ln -sf ../cbonding/libcsdGL.so
gl_8h.xml:
--- 7,20 ----
DEBUG=
OPTS=$(DEBUG)
! MCS=$(CC) $(OPTS) -lib:../GL -r:csDragons.OpenGL.dll
PACKAGE=csDragons
GAC=gacutil $(GACUTIL_FLAGS)
+ DLL=csDragons.OpenGL.Cg.dll
! all: $(DLL)
! $(DLL): $(FILES)
! $(MCS) -target:library $(FILES) -out:$@
gl_8h.xml:
***************
*** 34,57 ****
$(GEN) cgGL.xml
! demo: demo.exe
%.exe:%.cs
! $(MCS) -r:csdCg.dll -r:csdGL.dll $^ -o $@
!
! test: test.exe
- test.exe: test.cs $(FILES)
- $(MCS) -r:csdGL.dll test.cs $(FILES) -out:test.exe
-
install: install-gac
!
! install-gac: csdCg.dll
! $(GAC) /i csdCg.dll /f /package $(PACKAGE)
uninstall: uninstall-gac
uninstall-gac:
! $(GAC) /u csdCg
clean:
--- 27,44 ----
$(GEN) cgGL.xml
! demo: demo.exe
%.exe:%.cs
! $(MCS) -r:csDragons.OpenGL.Cg.dll $^ -o $@
install: install-gac
! install-gac: $(DLL)
! $(GAC) /i $(DLL) /f /package $(PACKAGE)
uninstall: uninstall-gac
uninstall-gac:
! $(GAC) /u $(DLL)
clean:
|