]> git.draconx.ca Git - gob-dx.git/blob - src/Makefile.am
Release 1.0.6
[gob-dx.git] / src / Makefile.am
1 #YACCFLAGS += -d -t
2 YFLAGS += -d -t
3 SUBDIRS =
4
5 CFLAGS += -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations
6
7 INCLUDES = @GLIB_CFLAGS@ -I$(includedir)
8
9 bin_PROGRAMS = @DOINSTGOB@
10 noinst_PROGRAMS = @NOINSTGOB@
11 EXTRA_PROGRAMS = gob
12
13 BUILT_SOURCES = parse.h parse.c lexer.c
14
15 gob_SOURCES =   \
16         main.c          \
17         main.h          \
18         treefuncs.c     \
19         treefuncs.h     \
20         out.c           \
21         out.h           \
22         util.c          \
23         util.h          \
24         checks.c        \
25         checks.h        \
26         parse.y         \
27         lexer.l
28
29 gob_LDADD = \
30         -lm \
31         $(GLIB_LIBS) \
32         @LEXLIB@
33
34 # we might want popt back in the future
35 #       @POPT_LIB@
36
37 CLEANFILES += $(BUILT_SOURCES) gtk-weird-button.* gtk-weird-button-private.h
38
39 EXTRA_DIST = test.gob generate_treefuncs.pl treefuncs.def
40
41 parse.h parse.c: parse.y
42         $(YACC) $(YFLAGS) $<
43         test -f y.tab.c && mv -f y.tab.c parse.c
44         test -f y.tab.h && mv -f y.tab.h parse.h
45
46 test: gtk-weird-button.c gtk-weird-button.h
47         $(CC) -g -Wall `gtk-config --cflags` -c gtk-weird-button.c
48
49 gtk-weird-button.c gtk-weird-button.h: test.gob gob
50         ./gob test.gob
51
52 # can't depend on the header file as that would break the above rule
53 # since it's just for testing, who cares
54 testcpp: gtk-weird-button.cc
55         g++ -g -Wall `gtk-config --cflags` -c gtk-weird-button.cc
56
57 gtk-weird-button.cc: test.gob gob
58         ./gob --for-cpp test.gob