Revision 11453,
1.2 KB
checked in by ghudson, 27 years ago
(diff) |
Whoops, synctree lives in sbindir, not bindir.
|
Rev | Line | |
---|
[11453] | 1 | # $Id: Makefile.in,v 1.3 1998-04-30 20:04:07 ghudson Exp $ |
---|
[10505] | 2 | |
---|
| 3 | SHELL=/bin/sh |
---|
| 4 | VPATH=@srcdir@ |
---|
| 5 | INSTALL=@INSTALL@ |
---|
| 6 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
| 7 | srcdir=@srcdir@ |
---|
| 8 | top_srcdir=@top_srcdir@ |
---|
| 9 | prefix=@prefix@ |
---|
| 10 | exec_prefix=@exec_prefix@ |
---|
[11453] | 11 | sbindir=@sbindir@ |
---|
[10505] | 12 | mandir=@mandir@ |
---|
| 13 | |
---|
| 14 | CC=@CC@ |
---|
| 15 | CPPFLAGS=@CPPFLAGS@ |
---|
| 16 | CFLAGS=@CFLAGS@ |
---|
| 17 | DEFS=@DEFS@ |
---|
| 18 | LDFLAGS=@LDFLAGS@ |
---|
| 19 | LIBS=@LIBS@ |
---|
| 20 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS} |
---|
| 21 | YACC=@YACC@ |
---|
| 22 | LEX=@LEX@ |
---|
| 23 | |
---|
| 24 | OBJS= synctree.o rules.o glob_match.o bool_exp.o vtable.o err.o util.o \ |
---|
| 25 | y.tab.o |
---|
| 26 | |
---|
| 27 | all: synctree |
---|
| 28 | |
---|
| 29 | synctree: ${OBJS} |
---|
| 30 | ${CC} ${LDFLAGS} -o synctree ${OBJS} ${LIBS} |
---|
| 31 | |
---|
| 32 | .c.o: |
---|
| 33 | ${CC} -c ${ALL_CFLAGS} $< |
---|
| 34 | |
---|
| 35 | y.tab.o: y.tab.c lex.yy.c |
---|
| 36 | |
---|
| 37 | y.tab.c: readrules.y |
---|
| 38 | ${YACC} -d readrules.y |
---|
| 39 | |
---|
| 40 | lex.yy.c: readrules.l |
---|
| 41 | ${LEX} readrules.l |
---|
| 42 | |
---|
| 43 | check: |
---|
| 44 | |
---|
| 45 | install: |
---|
[11453] | 46 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${sbindir} |
---|
[10505] | 47 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8 |
---|
[11453] | 48 | ${INSTALL_PROGRAM} synctree ${DESTDIR}${sbindir} |
---|
[11083] | 49 | ${INSTALL} -m 444 ${srcdir}/synctree.man \ |
---|
| 50 | ${DESTDIR}${mandir}/man8/synctree.8 |
---|
[10505] | 51 | |
---|
| 52 | clean: |
---|
| 53 | rm -f ${OBJS} y.tab.c lex.yy.c synctree |
---|
| 54 | |
---|
| 55 | distclean: clean |
---|
| 56 | rm -f config.cache config.log config.status Makefile |
---|
| 57 | |
---|
| 58 | bool_exp.o dates_dbm.o rules.o synctree.o vtable.o y.tab.o: synctree.h |
---|
| 59 | glob_match.o: regexp.h |
---|
Note: See
TracBrowser
for help on using the repository browser.