X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/8cb6370effd9f2dacc6dc9b662a43ea19ee637ac..e10d6e307623d0952f6e1f5d9fee8720ddab4808:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 58a6157..504fcf0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,6 +15,10 @@ gob_SOURCES = \ tree.h \ out.c \ out.h \ + util.c \ + util.h \ + checks.c \ + checks.h \ parse.y \ lexer.l @@ -28,7 +32,7 @@ gob_LDADD = \ BUILT_SOURCES = parse.h parse.c lexer.c -CLEANFILES += $(BUILT_SOURCES) gtk-weird-button.* +CLEANFILES += $(BUILT_SOURCES) gtk-weird-button.* gtk-weird-button-private.h EXTRA_DIST = test.gob @@ -42,3 +46,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