source: trunk/athena/etc/larvnetd/Makefile.in @ 13769

Revision 13769, 1.4 KB checked in by danw, 25 years ago (diff)
compile with warnings
Line 
1# $Id: Makefile.in,v 1.2 1999-10-19 20:23:31 danw Exp $
2
3SHELL=/bin/sh
4VPATH=@srcdir@
5INSTALL=@INSTALL@
6INSTALL_PROGRAM=@INSTALL_PROGRAM@
7srcdir=@srcdir@
8top_srcdir=@top_srcdir@
9prefix=@prefix@
10exec_prefix=@exec_prefix@
11sbindir=@sbindir@
12includedir=@includedir@
13mandir=@mandir@
14
15CC=@CC@
16DEFS=@DEFS@
17CPPFLAGS=@CPPFLAGS@
18CFLAGS=@CFLAGS@ ${WARN_CFLAGS}
19LDFLAGS=@LDFLAGS@
20LIBS=@HESIOD_LIBS@ @LIBS@ -lares
21ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS}
22
23OBJS=config.o larvnetd.o printer.o report.o timer.o util.o ws.o
24
25all: larvnetd
26
27larvnetd: ${OBJS}
28        ${CC} ${LDFLAGS} -o larvnetd ${OBJS} ${LIBS}
29
30.c.o:
31        ${CC} -c ${ALL_CFLAGS} $<
32
33${OBJS}: larvnetd.h timer.h
34
35check:
36
37install:
38        ${top_srcdir}/mkinstalldirs ${DESTDIR}${sbindir}
39        ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}
40        ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man5
41        ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8
42        ${INSTALL_PROGRAM} larvnetd ${DESTDIR}${sbindir}
43        ${INSTALL} -m 444 ${srcdir}/larvnetd.8 ${DESTDIR}${mandir}/man8
44        ${INSTALL} -m 444 ${srcdir}/larvnet.conf.5 ${DESTDIR}${mandir}/man5
45        ${INSTALL} -m 444 ${srcdir}/larvnet.cgroups.5 ${DESTDIR}${mandir}/man5
46        ${INSTALL} -m 444 ${srcdir}/larvnet.clusters.5 ${DESTDIR}${mandir}/man5
47        ${INSTALL} -m 444 ${srcdir}/larvnet.printers.5 ${DESTDIR}${mandir}/man5
48
49clean:
50        rm -f ${OBJS} larvnetd
51
52distclean: clean
53        rm -f config.cache config.log config.status Makefile
Note: See TracBrowser for help on using the repository browser.