X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/6e77e91bbb048a0ee1a072715c0ce808c169ab38..2255b3d84eeb947d4c065332f16e410ae4704c63:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 3754187..7b43ada 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,12 @@ #YACCFLAGS += -d -t YFLAGS += -d -t +SUBDIRS = INCLUDES = @GLIB_CFLAGS@ -I$(includedir) -bin_PROGRAMS = gob +bin_PROGRAMS = @DOINSTGOB@ +noinst_PROGRAMS = @NOINSTGOB@ +EXTRA_PROGRAMS = gob gob_SOURCES = \ main.c \ @@ -17,13 +20,15 @@ gob_SOURCES = \ gob_LDADD = \ -lm \ - @POPT_LIB@ \ $(GLIB_LIBS) \ @LEXLIB@ +# we might want popt back in the future +# @POPT_LIB@ + 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 @@ -37,3 +42,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