blob: 90debd186afcde409f6b92e0a9332cf096c6be39 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# progs/slang/Makefile
TOP = ../..
include $(TOP)/configs/current
INCDIR = $(TOP)/include
LIB_DEP = $(LIB_DIR)/$(GL_LIB_NAME)
#
# targets
#
.PHONY: default tests clean
default: cltest sotest vstest
tests: default
! ./sotest 2> /dev/null | (grep -e ^[*][*][*])
! ./vstest 2> /dev/null | (grep -e ^[*][*][*])
! ./cltest 2> /dev/null | (grep -e ^[*][*][*])
clean:
rm -f cltest.o sotest.o vstest.o framework.o cltest sotest vstest
#
# executables
#
cltest: cltest.o framework.o $(LIB_DEP)
$(CC) cltest.o framework.o $(APP_LIB_DEPS) -o cltest
sotest: sotest.o framework.o $(LIB_DEP)
$(CC) sotest.o framework.o $(APP_LIB_DEPS) -o sotest
vstest: vstest.o framework.o $(LIB_DEP)
$(CC) vstest.o framework.o $(APP_LIB_DEPS) -o vstest
#
# objects
#
framework.o: framework.c
$(CC) -c -I$(INCDIR) framework.c -o framework.o
cltest.o: cltest.c
$(CC) -c -I$(INCDIR) cltest.c -o cltest.o
sotest.o: sotest.c
$(CC) -c -I$(INCDIR) sotest.c -o sotest.o
vstest.o: vstest.c
$(CC) -c -I$(INCDIR) vstest.c -o vstest.o
#
# sources
#
framework.c: framework.h
cltest.c: framework.h
sotest.c: framework.h
vstest.c: framework.h
|