File: Makefile

package info (click to toggle)
libproplist 0.7.1-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 684 kB
  • ctags: 452
  • sloc: ansic: 3,684; sh: 1,856; lex: 181; yacc: 118; makefile: 106; tcl: 40
file content (15 lines) | stat: -rw-r--r-- 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: memtest

install:

clean:
	rm -f memtest *.o

memtest: memtest.o ../libPropList.a
	gcc -o memtest -L.. memtest.o -lPropList

../libPropList.a:
	make -C ..

%.o: %.c
	gcc -g -c -I.. -o $@ $<