X-Git-Url: https://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/8cb6370effd9f2dacc6dc9b662a43ea19ee637ac..77fd2f2194af12f95959506910f3babe842c5f1f:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 58a6157..ffe9113 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,19 +2,27 @@ 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 \ + util.h \ + checks.c \ + checks.h \ parse.y \ lexer.l @@ -26,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 -CLEANFILES += $(BUILT_SOURCES) gtk-weird-button.* +EXTRA_DIST = test.gob generate_treefuncs.pl treefuncs.def -EXTRA_DIST = test.gob - -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 @@ -42,3 +48,11 @@ test: gtk-weird-button.c gtk-weird-button.h gtk-weird-button.c gtk-weird-button.h: test.gob gob ./gob test.gob + +# can't depend on the header file as that would break the above rule +# since it's just for testing, who cares +testcpp: gtk-weird-button.cc + g++ -g -Wall `gtk-config --cflags` -c gtk-weird-button.cc + +gtk-weird-button.cc: test.gob gob + ./gob --for-cpp test.gob