diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-02 19:30:47 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-02 19:30:47 +0000 |
| commit | 9dd43bb296fcec0dc77e240939ce548ddb6e8193 (patch) | |
| tree | d4af4cb3be5c91b7635a4a48f96e8918d326e345 | |
| parent | 0a04c368633b31345db2ebe23c54b14972c25780 (diff) | |
bison doesnt use y.tab.*
| -rw-r--r-- | openbox/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openbox/Makefile.am b/openbox/Makefile.am index 2503354f..51cc0050 100644 --- a/openbox/Makefile.am +++ b/openbox/Makefile.am @@ -28,21 +28,21 @@ openbox3_LDFLAGS=-export-dynamic openbox3_SOURCES=client.c event.c extensions.c focus.c frame.c openbox.c \ prop.c screen.c stacking.c xerror.c timer.c dispatch.c \ engine.c plugin.c action.c grab.c config.c menu.c \ - y.tab.c lex.yy.c parse.c + parse.tab.c lex.yy.c parse.c noinst_HEADERS=client.h event.h extensions.h focus.h frame.h geom.h gettext.h \ openbox.h prop.h screen.h stacking.h xerror.h dispatch.h \ timer.h engine.h plugin.h action.h grab.h config.h menu.h parse.h \ - y.tab.h + parse.tab.h lex.yy.c: parse.l $(FLEX) $^ -parse.h: y.tab.h +parse.h: parse.tab.h -y.tab.h: y.tab.c +parse.tab.h:parsey.tab.c -y.tab.c: parse.y +parse.tab.c: parse.y $(YACC) -d $< MAINTAINERCLEANFILES= Makefile.in |
