File: makefile

package info (click to toggle)
libwn6 6.0-17
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 6,012 kB
  • ctags: 3,903
  • sloc: ansic: 45,078; makefile: 960; csh: 274; sh: 17
file content (19 lines) | stat: -rwxr-xr-x 330 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
#!gmake

CFLAGS = -g -I../matrix -I../low $(ADDCFLAGS)
OBJS = test_anl2.o 
#OBJS = test_anl.o 

compile:	examples

examples: $(OBJS) $(ARCHIVE)
	cc -o examples $(OBJS) $(ARCHIVE) ../matrix/text.a ../low/text.a -lm

clean:
	set nonomatch; rm -f *.o
	rm -f $(ARCHIVE)
	rm -f examples
	rm -f core errors.txt tmp

all: clean compile