File: Makefile

package info (click to toggle)
kfreebsd-kernel-headers 0.83
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 408 kB
  • sloc: makefile: 128; sh: 60; ansic: 34
file content (29 lines) | stat: -rw-r--r-- 448 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
TESTS = \
	type_collision.o \
	time_collision.o \
	param_collision.o \
	limits_collision.o \
	uintXX_t.o \
	\
	bus.o \
	cpufunc.o \
	devicestat.o \
	in_pcb.o \
	ppp.o \
	soundcard.o \
	sys_sysctl.o \
	stdarg.o \
	usb.o \
	$()

#	elf.o

CFLAGS = -Iinclude -I../debian/kfreebsd-kernel-headers/usr/include

# Enable all the stuff in glibc to probe for collisions
CFLAGS += -D_GNU_SOURCE -Werror -Wsystem-headers

all: $(TESTS)

clean:
	rm -f $(TESTS)