source: trunk/athena/bin/athdir/Makefile.in @ 24559

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