From ea488580c42e8918445a945484de3c8a5addc761 Mon Sep 17 00:00:00 2001 From: "Andrew G. Morgan" Date: Tue, 20 Jun 2000 22:10:38 +0000 Subject: Initial revision --- examples/Makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 examples/Makefile (limited to 'examples/Makefile') diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 00000000..c6882473 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,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 -- cgit v1.2.3