From: Luke H. <lh...@us...> - 2002-11-30 00:20:02
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1:/tmp/cvs-serv26599/common Modified Files: Makefile.am Log Message: the callback classes now compile and link with the library. However it still is not usable =/ Index: Makefile.am CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/Makefile.am =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 29 Nov 2002 06:06:16 -0000 1.2 +++ Makefile.am 30 Nov 2002 00:19:59 -0000 1.3 @@ -1,7 +1,14 @@ +SUBDIRS = callbacks + noinst_LTLIBRARIES = libcommon.la libcommon_la_SOURCES = $(COMMON) libcommon_la_CPPFLAGS = -D_DEBUG + +libcommon_la_LIBADD = \ + callbacks/libcallbacks.la +libcommon_la_DEPENDENCIES = \ + callbacks/libcallbacks.la COMMON = \ extal.c \ |