blob: c556a4bf3d5176a6260d9b4e6285543043f504d2 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#
# $FreeBSD$
#
# Makefile for building userland tests
# this is written in a form compatible with gmake
SCHED_SRCS = test_dn_sched.c
SCHED_SRCS += dn_sched_fifo.c
SCHED_SRCS += dn_sched_prio.c
SCHED_SRCS += dn_sched_qfq.c
SCHED_SRCS += dn_sched_rr.c
SCHED_SRCS += dn_sched_wf2q.c
SCHED_SRCS += dn_heap.c
SCHED_SRCS += main.c
SCHED_OBJS=$(SCHED_SRCS:.c=.o)
HEAP_SRCS = dn_heap.c test_dn_heap.c
HEAP_OBJS=$(HEAP_SRCS:.c=.o)
VPATH= .:..
CFLAGS = -I.. -I. -Wall -Werror -O3 -DIPFW
TARGETS= test_sched # no test_heap by default
all: $(TARGETS)
test_heap : $(HEAP_OBJS)
$(CC) -o $@ $(HEAP_OBJS)
test_sched : $(SCHED_OBJS)
$(CC) -o $@ $(SCHED_OBJS)
$(SCHED_OBJS): dn_test.h
main.o: mylist.h
clean:
- rm *.o $(TARGETS) *.core
ALLSRCS = $(SCHED_SRCS) dn_test.h mylist.h \
dn_sched.h dn_heap.h ip_dn_private.h Makefile
TMPBASE = /tmp/testXYZ
TMPDIR = $(TMPBASE)/test
tgz:
-rm -rf $(TMPDIR)
mkdir -p $(TMPDIR)
-cp -p $(ALLSRCS) $(TMPDIR)
-(cd ..; cp -p $(ALLSRCS) $(TMPDIR))
ls -la $(TMPDIR)
(cd $(TMPBASE); tar cvzf /tmp/test.tgz test)
|