e4f1dbace7
Here are the two modifications I had to make to get flightgear (just updated from CVS) to build. The first one is for being able to specify SimGear's location at the ./configure command line, and the second one is to be able to link.
15 lines
344 B
Makefile
15 lines
344 B
Makefile
noinst_LIBRARIES = libInput.a
|
|
|
|
libInput_a_SOURCES = input.cxx input.hxx
|
|
|
|
bin_PROGRAMS = js_demo fgjs
|
|
|
|
js_demo_SOURCES = js_demo.cxx
|
|
|
|
js_demo_LDADD = -lplibjs $(audio_LIBS) -lplibul
|
|
|
|
fgjs_SOURCES = fgjs.cxx jsinput.cxx jsinput.h jssuper.cxx jssuper.h
|
|
|
|
fgjs_LDADD = -lplibjs $(audio_LIBS) -lplibul
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|