File: Makefile

package info (click to toggle)
taper 6.9rb-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,444 kB
  • ctags: 1,604
  • sloc: ansic: 15,921; makefile: 248
file content (41 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (4)
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
#
#   Time-stamp: <96/07/19 20:16:01 yusuf>
#
#   $Id: Makefile,v 1.4 1996/07/27 20:42:27 yusuf Exp $

#All the user config stuff, including directories etc..
#is found in Makefile.common
#
#
include ../version
include ../Makefile.common


all: $(COMPRESS_LIB)


$(COMPRESS_LIB): $(COMPRESS_OBJS)
	ar rc $(COMPRESS_LIB) $(COMPRESS_OBJS)
	ranlib $(COMPRESS_LIB)


.c.o:
	$(CC) $(CFLAGS) $(CFLAGS_NOLNK) $(DEFINES) $(INCLUDE) -o $@ -c $<

clean:
	rm -rf core *.o *~ $(COMPRESS_LIB) .depend

.depend:
	make depend

depend:
	$(GCC) -M $(INCLUDE) $(COMPRESS_SRCS) > .depend


dep: depend

ifeq (.depend, $(wildcard .depend))
include .depend
endif
#
#