File: Makefile

package info (click to toggle)
libdebian-installer 0.97
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,952 kB
  • ctags: 828
  • sloc: sh: 11,090; ansic: 4,871; makefile: 164
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 $<