source: trunk/athena/bin/discuss/ets/Makefile.in @ 24621

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
5SHELL=/bin/sh
6VPATH=@srcdir@
7srcdir=@srcdir@
8top_srcdir=@top_srcdir@
9
10CC=@CC@
11DEFS=@DEFS@
12CPPFLAGS=@CPPFLAGS@
13CFLAGS=@CFLAGS@
14ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} ${DEFS}
15
16OBJS=discuss_err.o dsc_et.o rpc_et.o usp_et.o krb_et.o
17
18EXTRA_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
31all: $(OBJS)
32
33clean:
34        rm -f ${OBJS} ${EXTRA_CLEAN}
35
36distclean: clean
37        rm -f Makefile
38
39depend:
40
41install:
42
Note: See TracBrowser for help on using the repository browser.