diff options
Diffstat (limited to 'modules/mod_debug/Makefile.am')
-rw-r--r-- | modules/mod_debug/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/mod_debug/Makefile.am b/modules/mod_debug/Makefile.am new file mode 100644 index 0000000..134118f --- /dev/null +++ b/modules/mod_debug/Makefile.am @@ -0,0 +1,15 @@ +## Process this file with automake to produce Makefile.in + +#AUTOMAKE_OPTIONS = no-dependencies foreign + +lib_LTLIBRARIES = libmod_debug.la + +libmod_debug_la_SOURCES = mod_debug.c systexts.c +libmod_debug_la_CFLAGS = $(COMMON_CFLAGS) $(SDL_CFLAGS) -I$(BGD_PATH)/include -I$(BGD_PATH)/bgdrtm/include -I. -I../libkey -I../librender/ -I../libgrbase +libmod_debug_la_LDFLAGS = -s -module -no-undefined -avoid-version +libmod_debug_la_LIBADD = $(COMMON_LDFLAGS) -L../libkey/.libs -lkey -L../librender/.libs -lrender -L../libgrbase/.libs -lgrbase $(SDL_LIBS) -L$(BGD_PATH)/bgdrtm/src/.libs -lbgdrtm + +## Make sure these will be cleaned even when they're not built by +## default. +CLEANFILES = libmod_debug.la + |