File: Makefile

package info (click to toggle)
cfingerd 1.4.3-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 964 kB
  • sloc: ansic: 3,776; perl: 501; makefile: 137; sh: 73
file content (19 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile for the custom userlisting display
#
# Part of the CFINGERD distribution
# Released under the GPL.

include ../Makefile.cfg

OBJS = main.o initialize.o display.o options.o idle.o ../src/getutent.o

userlist:	$(OBJS)
		$(CC) -o $@ $^

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

install:	userlist
		install -m 755 -o $(BIN_OWNER) -g $(BIN_GROUP) -s userlist /usr/sbin/userlist
		install -m 644 -o $(MAN_OWNER) -g $(MAN_GROUP) userlist.1 $(MANDIR)/man1