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 (20 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ../Make.$(systype)
CFLAGS=$(XCFLAGS) -I..

OFILES=\
	darwin.o\
	fdbuf.o\
	rand.o\
	repl.o\
	srv.o\

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

clean:
	rm -f *.o

nuke:
	rm -f *.o libdarwin.a