X-Git-Url: https://git.piment-noir.org/?p=lsystem3d.git;a=blobdiff_plain;f=src%2FMakefile.am;h=ed9bc07e5d1b1c6a87312e8590410b7b68f5c37c;hp=909976e1800cac32b57e6892ee2bba680411f635;hb=526db67540bf69a4c09ed0d0f4d62bad0a37ee70;hpb=3025996ba17bf59f5bc64def5d55b95c4d732a8a diff --git a/src/Makefile.am b/src/Makefile.am index 909976e..ed9bc07 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,13 +1,14 @@ bin_PROGRAMS = lsystem3d -lsystem3d_SOURCES = lsystem.cpp callbacks.cpp lindenmayersystem.cpp model.cpp \ - openglwindow.cpp turtle.cpp vector.cpp xmlstructure.cpp lsystemparameters.cpp \ - coordinate.cpp +lsystem3d_SOURCES = lsystem.cpp lindenmayersystem.cpp model.cpp turtle.cpp \ + vector.cpp xmlstructure.cpp lsystemparameters.cpp coordinate.cpp lsystem3d.cpp \ + renderingsurface.cpp gui.cpp color.cpp # set the include path found by configure -INCLUDES = `pkg-config libxml++-2.6 --cflags` $(all_includes) +INCLUDES = `fox-config --cflags` `pkg-config libxml++-2.6 --cflags` \ + $(all_includes) # the library search path. -lsystem3d_LDFLAGS = $(all_libraries) -lglui -lglut -lGLU -lGL `pkg-config \ - libxml++-2.6 --libs` -noinst_HEADERS = callbacks.h lindenmayersystem.h model.h openglwindow.h \ - turtle.h vector.h xmlstructure.h lsystemparameters.h coordinate.h lsystem.xml +lsystem3d_LDFLAGS = $(all_libraries) `pkg-config libxml++-2.6 --libs` \ + `fox-config --libs` +noinst_HEADERS = lindenmayersystem.h model.h turtle.h vector.h xmlstructure.h \ + lsystemparameters.h coordinate.h lsystem.xml lsystem3d.h renderingsurface.h gui.h color.h