File: Makefile

package info (click to toggle)
debauch 0.3-11
  • links: PTS
  • area: main
  • in suites: potato
  • size: 220 kB
  • ctags: 685
  • sloc: ansic: 2,136; makefile: 531; sh: 84; asm: 34
file content (15 lines) | stat: -rw-r--r-- 250 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS=-g

# These need to be linked against the library
LIBOBJS=stacktest getrettest

# These do not
OBJS=ftest1 ftest2 ftest3

all: $(OBJS) $(LIBOBJS)

$(LIBOBJS): 
	    $(CC) $(CFLAGS) $@.c -o $@ -L.. -ldebauch
clean:
	/bin/rm $(OBJS) $(LIBOBJS)