File: Makefile

package info (click to toggle)
netkit-base 0.10-9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,492 kB
  • ctags: 1,349
  • sloc: ansic: 8,544; sh: 220; makefile: 129
file content (15 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: rpcinfo

include ../MCONFIG
include ../MRULES

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

install: rpcinfo
	install -s -m$(BINMODE) rpcinfo $(INSTALLROOT)$(BINDIR)
	install -m$(MANMODE) rpcinfo.8 $(INSTALLROOT)$(MANDIR)/man8

clean:
	rm -f *.o rpcinfo