]> git.draconx.ca Git - gob-dx.git/blobdiff - src/Makefile.am
Release 2.0.13
[gob-dx.git] / src / Makefile.am
index cd51e9c37b5b3044123558ef6011a6f654c1364f..51e76ad171c308ae9f83c3028b70a377e6d4cbba 100644 (file)
@@ -2,11 +2,12 @@
 AM_YFLAGS = -d -t
 SUBDIRS = .
 
-AM_CFLAGS = \
-       -Wall                   \
-       -Wpointer-arith         \
-       -Wmissing-prototypes    \
-       -Wmissing-declarations
+#GCC specific, should not be in distributed files
+#AM_CFLAGS = \
+#      -Wall                   \
+#      -Wpointer-arith         \
+#      -Wmissing-prototypes    \
+#      -Wmissing-declarations
 
 DEFS = @DEFS@ \
        -DPKGDATADIR=\"$(pkgdatadir)\"
@@ -19,8 +20,11 @@ INCLUDES = \
        -I$(top_srcdir)/src     \
        -I$(includedir)
 
-bin_PROGRAMS = @DOINSTGOB@
+if NOINSTGOB
 noinst_PROGRAMS = @NOINSTGOB@
+else
+bin_PROGRAMS = @INSTGOB@
+endif
 EXTRA_PROGRAMS = gob2
 
 BUILT_SOURCES = parse.h parse.c lexer.c
@@ -57,7 +61,7 @@ EXTRA_DIST = $(BUILT_SOURCES) test.gob generate_treefuncs.pl treefuncs.def
 #      test -f y.tab.h && mv -f y.tab.h parse.h
 
 test: test-object.c test-object.h
-       $(CC) -g -Wall `pkg-config --cflags gobject-2.0 gtk+-2.0` -c test-object.c
+       $(CC) -g -O -W -Wall -Wunused -Wuninitialized -Wdeclaration-after-statement -Wshadow -Wwrite-strings -Wunreachable-code -Wbad-function-cast -pedantic `pkg-config --cflags gobject-2.0 gtk+-2.0` -c test-object.c
 
 test-object.c test-object.h: test.gob gob2
        ./gob2 test.gob
@@ -65,7 +69,7 @@ test-object.c test-object.h: test.gob gob2
 # can't depend on the header file as that would break the above rule
 # since it's just for testing, who cares
 testcpp: test-object.cc
-       g++ -g -Wall `pkg-config --cflags gobject-2.0 gtk+-2.0` -c test-object.cc
+       g++ -g -O -W -Wall -Wunused -Wuninitialized  -Wwrite-strings -Wunreachable-code -pedantic `pkg-config --cflags gobject-2.0 gtk+-2.0` -c test-object.cc
 
 test-object.cc: test.gob gob2
        ./gob2 --for-cpp test.gob