File: sample.c.Makefile

package info (click to toggle)
libconfig 1.3.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,384 kB
  • ctags: 897
  • sloc: sh: 9,141; ansic: 1,451; yacc: 312; lex: 199; cpp: 193; makefile: 187
file content (15 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Makefile for libconfig - examples


sample1:	sample1.c
	$(CC) -o $@ -lconfig $<

sample2:	sample2.c
	$(CC) -o $@ -lconfig $<

sample3:	sample3.c
	$(CC) -o $@ -lconfig $<


stub:		stub.c
	$(CC) -o $@ -lconfig $<