File: Makefile

package info (click to toggle)
tra 20020816-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,696 kB
  • ctags: 2,623
  • sloc: ansic: 22,519; makefile: 406; asm: 269
file content (27 lines) | stat: -rw-r--r-- 319 bytes parent folder | download
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
include ../Make.$(systype)
CFLAGS=$(XCFLAGS) -I..

OFILES=\
	adler32.o\
	crc32.o\
	deflate.o\
	infblock.o\
	infcodes.o\
	inffast.o\
	inflate.o\
	inftrees.o\
	infutil.o\
	trazlib.o\
	trees.o\
	zutil.o

libzlib.a: $(OFILES)
	ar rvu libzlib.a $(OFILES)
	$(RANLIB) libzlib.a

clean:
	rm -f *.o

nuke:
	rm -f *.o libzlib.a