File: Makefile

package info (click to toggle)
netbase 3.18-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,228 kB
  • ctags: 3,211
  • sloc: ansic: 32,228; sh: 1,596; makefile: 686; perl: 573
file content (17 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: inetd

include ../MCONFIG
include ../MRULES

inetd: inetd.o daemon.o
	$(CC) $(LDFLAGS) $^ $(LIBS) -o $@

inetd.o daemon.o: pathnames.h inetd.h

install: inetd
	install -s -m$(DAEMONMODE) inetd $(INSTALLROOT)$(SBINDIR)
	install -m$(MANMODE) inetd.8 $(INSTALLROOT)$(MANDIR)/man8

clean:
	rm -f *.o inetd