Revision 24621,
607 bytes
checked in by broder, 14 years ago
(diff) |
In discuss:
* Add a working distclean target.
|
Line | |
---|
1 | # |
---|
2 | # $Id: Makefile.in,v 1.1 1999-02-02 20:40:14 kcr Exp $ |
---|
3 | # |
---|
4 | |
---|
5 | SHELL=/bin/sh |
---|
6 | VPATH=@srcdir@ |
---|
7 | srcdir=@srcdir@ |
---|
8 | top_srcdir=@top_srcdir@ |
---|
9 | |
---|
10 | CC=@CC@ |
---|
11 | DEFS=@DEFS@ |
---|
12 | CPPFLAGS=@CPPFLAGS@ |
---|
13 | CFLAGS=@CFLAGS@ |
---|
14 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS} |
---|
15 | |
---|
16 | OBJS=discuss_err.o dsc_et.o rpc_et.o usp_et.o krb_et.o |
---|
17 | |
---|
18 | EXTRA_CLEAN=discuss_err.c dsc_et.c rpc_et.c usp_et.c \ |
---|
19 | discuss_err.h dsc_et.h rpc_et.h usp_et.h |
---|
20 | |
---|
21 | |
---|
22 | .SUFFIXES: .et .o .c |
---|
23 | |
---|
24 | .et.o: |
---|
25 | compile_et $< |
---|
26 | $(CC) -c ${ALL_CFLAGS} $*.c |
---|
27 | |
---|
28 | .c.o: |
---|
29 | $(CC) -c ${ALL_CFLAGS} $< |
---|
30 | |
---|
31 | all: $(OBJS) |
---|
32 | |
---|
33 | clean: |
---|
34 | rm -f ${OBJS} ${EXTRA_CLEAN} |
---|
35 | |
---|
36 | distclean: clean |
---|
37 | rm -f Makefile |
---|
38 | |
---|
39 | depend: |
---|
40 | |
---|
41 | install: |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.