X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/2310330e7d4d724bf6641339836be8523f95c916..c9914e54f16c3315d47040f4cca2d3788228c504:/src/Makefile.in diff --git a/src/Makefile.in b/src/Makefile.in index 00aff17..c27b02b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -60,7 +60,6 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : CC = @CC@ -CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ DOINSTGOB = @DOINSTGOB@ @@ -82,13 +81,15 @@ YACC = @YACC@ YFLAGS = -d -t SUBDIRS = +CFLAGS = @CFLAGS@ -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations + INCLUDES = @GLIB_CFLAGS@ -I$(includedir) bin_PROGRAMS = @DOINSTGOB@ noinst_PROGRAMS = @NOINSTGOB@ EXTRA_PROGRAMS = gob -gob_SOURCES = main.c main.h tree.c tree.h out.c out.h parse.y lexer.l +gob_SOURCES = main.c 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 $(GLIB_LIBS) @LEXLIB@ @@ -99,9 +100,9 @@ gob_LDADD = -lm $(GLIB_LIBS) @LEXLIB@ 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 +EXTRA_DIST = test.gob generate_treefuncs.pl treefuncs.def mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = @@ -110,7 +111,7 @@ PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) DEFS = @DEFS@ -I. -I$(srcdir) -I.. LIBS = @LIBS@ -gob_OBJECTS = main.o tree.o out.o parse.o lexer.o +gob_OBJECTS = main.o treefuncs.o out.o util.o checks.o parse.o lexer.o gob_DEPENDENCIES = gob_LDFLAGS = LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ @@ -318,11 +319,15 @@ distdir: $(DISTFILES) || exit 1; \ fi; \ done -lexer.o: lexer.c ../config.h parse.h main.h -main.o: main.c ../config.h tree.h parse.h out.h main.h -out.o: out.c out.h -parse.o: parse.c ../config.h tree.h main.h +checks.o: checks.c ../config.h treefuncs.h main.h util.h checks.h +lexer.o: lexer.c ../config.h treefuncs.h parse.h main.h util.h +main.o: main.c ../config.h treefuncs.h parse.h out.h util.h checks.h \ + main.h +out.o: out.c main.h out.h +parse.o: parse.c ../config.h treefuncs.h main.h util.h +treefuncs.o: treefuncs.c treefuncs.h tree.o: tree.c ../config.h tree.h +util.o: util.c ../config.h treefuncs.h main.h util.h info-am: info: info-recursive @@ -419,6 +424,14 @@ 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 + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: