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 (58 lines) | stat: -rw-r--r-- 653 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
include ../Make.$(systype)
CFLAGS=$(XCFLAGS) -I..

OFILES=\
	argv0.o\
	dofmt.o\
	dorfmt.o\
	encodefmt.o\
	errfmt.o\
	getfields.o\
	fmt.o\
	fmtfd.o\
	fmtlock.o\
	fmtprint.o\
	fmtquote.o\
	fmtrune.o\
	fmtstr.o\
	fmtvprint.o\
	fprint.o\
	lock.o\
	malloc.o\
	pool.o\
	print.o\
	readn.o\
	rune.o\
	seprint.o\
	smprint.o\
	snprint.o\
	sprint.o\
	strdup.o\
	strtoll.o\
	strtoull.o\
	sysfatal.o\
	tokenize.o\
	u16.o\
	u32.o\
	u64.o\
	utfecpy.o\
	utflen.o\
	utfnlen.o\
	utfrrune.o\
	utfrune.o\
	utfutf.o\
	vfprint.o\
	vseprint.o\
	vsmprint.o\
	vsnprint.o

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

clean:
	rm -f *.o

nuke:
	rm -f *.o libc.a