summaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: c6882473727a45698aa53517b9a61a06d52c77a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# $Id$
#

dummy:

	@echo	"*** This is not a top level Makefile!"

PROGS = blank xsh check_user
SRCS = blank.c xsh.c check_user.c

# have removed the following pair since they no longer conform to
# any recognized conventions: vpass test
# ditto: vpass.c test.c

PROGSUID =

all: $(PROGS)

check_user: check_user.o
	$(CC) $(CFLAGS) -o $@ $< $(LOADLIBES)

blank: blank.o
	$(CC) $(CFLAGS) -o $@ $< $(LOADLIBES)

xsh: xsh.o
	$(CC) $(CFLAGS) -o $@ $< $(LOADLIBES)

install: all
	if [ -n "$(PROGS)" ]; then cp $(PROGS) ../bin ; fi
	if [ -n "$(PROGSUID)" ]; then \
		$(INSTALL) -m 4555 -o root -g bin $(PROGSUID) ../bin ; fi

clean:
	rm -f *.a *.so *.o *~ $(PROGS) $(PROGSUID)

remove:
	cd ../bin ; rm -f $(PROGS) $(PROGSUID)

extraclean: clean
	rm -f *.a *.out *.o *.so
	for x in $(PROGS) $(PROGSUID) ; do rm -f ../bin/$$x ; done