File: Makefile

package info (click to toggle)
cfingerd 1.4.3-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 636 kB
  • ctags: 437
  • sloc: ansic: 3,706; perl: 502; makefile: 166; sh: 72
file content (20 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# CFINGERD by Ken Hollis
#
# Released under the GPL

include ../Makefile.cfg

OBJS = main.o options.o version.o util.o errors.o strmcpy.o \
    parse.o configure.o internal.o signal.o standard.o \
    userlist.o fakeuser.o search.o getutent.o rfc1413.o \
    wildmat.o log.o

cfingerd:	$(OBJS)
		$(CC) -o $@ $^ $(LDFLAGS)

install:	cfingerd
		install -m 755 -o $(BIN_OWNER) -g $(BIN_GROUP) -s cfingerd /usr/sbin/cfingerd

clean:
		rm -f *.o cfingerd
		rm -f config.h