]> git.draconx.ca Git - gob-dx.git/blobdiff - src/Makefile.am
Release 1.0.6
[gob-dx.git] / src / Makefile.am
index 504fcf0daf85ba9d542eea767bbc4f74f1c81fba..ffe911378269005857be807b0df195847d567a77 100644 (file)
@@ -2,17 +2,21 @@
 YFLAGS += -d -t
 SUBDIRS =
 
+CFLAGS += -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations
+
 INCLUDES = @GLIB_CFLAGS@ -I$(includedir)
 
 bin_PROGRAMS = @DOINSTGOB@
 noinst_PROGRAMS = @NOINSTGOB@
 EXTRA_PROGRAMS = gob
 
+BUILT_SOURCES = parse.h parse.c lexer.c
+
 gob_SOURCES =  \
        main.c          \
        main.h          \
-       tree.c          \
-       tree.h          \
+       treefuncs.c     \
+       treefuncs.h     \
        out.c           \
        out.h           \
        util.c          \
@@ -30,13 +34,11 @@ gob_LDADD = \
 # we might want popt back in the future
 #      @POPT_LIB@
 
-BUILT_SOURCES = parse.h parse.c lexer.c
-
 CLEANFILES += $(BUILT_SOURCES) gtk-weird-button.* gtk-weird-button-private.h
 
-EXTRA_DIST = test.gob
+EXTRA_DIST = test.gob generate_treefuncs.pl treefuncs.def
 
-parse.h: parse.y
+parse.h parse.c: parse.y
        $(YACC) $(YFLAGS) $<
        test -f y.tab.c && mv -f y.tab.c parse.c
        test -f y.tab.h && mv -f y.tab.h parse.h