]> git.draconx.ca Git - gob-dx.git/blobdiff - src/Makefile.am
Release 1.0.2
[gob-dx.git] / src / Makefile.am
index f97395d2fc82ff783d6ab2d79b9431c0c69e4a81..1c846fd21270509a1b50deb5e2035cb3fdf51d8e 100644 (file)
@@ -1,28 +1,42 @@
 #YACCFLAGS += -d -t
 YFLAGS += -d -t
+SUBDIRS =
+
+CFLAGS += -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations
 
 INCLUDES = @GLIB_CFLAGS@ -I$(includedir)
 
-bin_PROGRAMS = gob
+bin_PROGRAMS = @DOINSTGOB@
+noinst_PROGRAMS = @NOINSTGOB@
+EXTRA_PROGRAMS = gob
 
 gob_SOURCES =  \
        main.c          \
-       tree.c          \
-       tree.h          \
+       main.h          \
+       treefuncs.c     \
+       treefuncs.h     \
+       out.c           \
+       out.h           \
+       util.c          \
+       util.h          \
+       checks.c        \
+       checks.h        \
        parse.y         \
        lexer.l
 
 gob_LDADD = \
        -lm \
-       -lpopt \
        $(GLIB_LIBS) \
        @LEXLIB@
 
+# we might want popt back in the future
+#      @POPT_LIB@
+
 BUILT_SOURCES = parse.h parse.c lexer.c
 
-CLEANFILES += $(BUILT_SOURCES)
+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
        $(YACC) $(YFLAGS) $<
@@ -30,5 +44,15 @@ parse.h: parse.y
        test -f y.tab.h && mv -f y.tab.h parse.h
 
 test: gtk-weird-button.c gtk-weird-button.h
+       $(CC) -g -Wall `gtk-config --cflags` -c gtk-weird-button.c
+
 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