Revision 24662,
911 bytes
checked in by broder, 15 years ago
(diff) |
In attachandrun:
* Use pkg-config to get the CFLAGS and LDFLAGS for libathdir.
|
Rev | Line | |
---|
[14643] | 1 | # $Id: Makefile.in,v 1.2 2000-04-18 04:22:37 ghudson Exp $ |
---|
[14411] | 2 | |
---|
| 3 | SHELL=/bin/sh |
---|
| 4 | VPATH=@srcdir@ |
---|
| 5 | INSTALL=@INSTALL@ |
---|
| 6 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
[24660] | 7 | INSTALL_DATA=@INSTALL_DATA@ |
---|
| 8 | MKDIR_P=@MKDIR_P@ |
---|
[14411] | 9 | srcdir=@srcdir@ |
---|
| 10 | top_srcdir=@top_srcdir@ |
---|
| 11 | prefix=@prefix@ |
---|
| 12 | exec_prefix=@exec_prefix@ |
---|
| 13 | bindir=@bindir@ |
---|
[14643] | 14 | lbindir=@lbindir@ |
---|
[14411] | 15 | mandir=@mandir@ |
---|
| 16 | |
---|
| 17 | CC=@CC@ |
---|
| 18 | DEFS=@DEFS@ |
---|
| 19 | CPPFLAGS=@CPPFLAGS@ |
---|
[24660] | 20 | CFLAGS=@CFLAGS@ |
---|
[14411] | 21 | LDFLAGS=@LDFLAGS@ |
---|
| 22 | LIBS=@LIBS@ |
---|
| 23 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS} |
---|
| 24 | |
---|
| 25 | all: attachandrun |
---|
| 26 | |
---|
| 27 | attachandrun: attachandrun.o |
---|
[24662] | 28 | ${CC} ${LDFLAGS} -o attachandrun attachandrun.o ${LIBS} |
---|
[14411] | 29 | |
---|
| 30 | .c.o: |
---|
| 31 | ${CC} -c ${ALL_CFLAGS} $< |
---|
| 32 | |
---|
| 33 | check: |
---|
| 34 | |
---|
| 35 | install: |
---|
[24660] | 36 | ${MKDIR_P} ${DESTDIR}${lbindir} |
---|
| 37 | ${MKDIR_P} ${DESTDIR}${mandir}/man1 |
---|
[14643] | 38 | ${INSTALL_PROGRAM} attachandrun ${DESTDIR}${lbindir} |
---|
[24660] | 39 | ${INSTALL_DATA} ${srcdir}/attachandrun.1 ${DESTDIR}${mandir}/man1 |
---|
[14411] | 40 | |
---|
| 41 | clean: |
---|
| 42 | rm -f attachandrun.o attachandrun |
---|
| 43 | |
---|
| 44 | distclean: clean |
---|
| 45 | rm -f config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.