fs-sysname-output-syntax-compatibility-20010723
[openafs.git] / src / bozo / test / Makefile
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 SRCDIR=
9 DESTDIR=DEST/
10 BACKDIR=../../../../PARENT/dest/
11 OPTIMIZE=-O
12
13 INCDIRS= -I${DESTDIR}include -I.. -I${BACKDIR}include
14 LDIRS= -L${DESTDIR}lib -L${DESTDIR}lib/afs -L.. -L${BACKDIR}lib -L${BACKDIR}lib/afs
15 utilib=${DESTDIR}lib/afs/util.a
16
17 CFLAGS = ${OPTIMIZE} ${INCDIRS} ${LDIRS} ${LIBS} ${XCFLAGS}
18
19 system: testproc smail-notifier
20
21 testproc: testproc.c 
22         $(CC) $(CFLAGS) -o testproc testproc.c
23
24 smail-notifier: smail-notifier.c 
25         $(CC) $(CFLAGS) -o smail-notifier smail-notifier.c
26
27 clean:
28         rm -f  *.a *.o testproc smail-notifier core
29