File: Makefile

package info (click to toggle)
libdebian-installer 0.50etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,900 kB
  • ctags: 702
  • sloc: sh: 8,766; ansic: 4,577; makefile: 211
file content (8 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
CC = gcc
CFLAGS = -Wall -I/usr/include/glib-1.2 -I/usr/lib/glib/include
LDFLAGS = -ldebian-installer -lau-c-unit
test: test_system_packages.o test_hash.o main.o
	${CC} ${LDFLAGS} -o test $^

%.o:%.c
	$(CC) $(CFLAGS) -c $<