summaryrefslogtreecommitdiff
path: root/progs/slang/Makefile
blob: 61db26d080769e6a31471477e4c9fbc395a008f8 (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
# progs/slang/Makefile

TOP = ../..

include $(TOP)/configs/current

INCDIR = $(TOP)/include

LIB_DEP = $(TOP)/$(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) $(LDFLAGS) cltest.o framework.o $(APP_LIB_DEPS) -o cltest

sotest: sotest.o framework.o $(LIB_DEP)
	$(CC) $(LDFLAGS) sotest.o framework.o $(APP_LIB_DEPS) -o sotest

vstest: vstest.o framework.o $(LIB_DEP)
	$(CC) $(LDFLAGS) vstest.o framework.o $(APP_LIB_DEPS) -o vstest

#
# objects
#

framework.o: framework.c framework.h
	$(CC) -c -I$(INCDIR) framework.c -o framework.o

cltest.o: cltest.c framework.h
	$(CC) -c -I$(INCDIR) cltest.c -o cltest.o

sotest.o: sotest.c framework.h
	$(CC) -c -I$(INCDIR) sotest.c -o sotest.o

vstest.o: vstest.c framework.h
	$(CC) -c -I$(INCDIR) vstest.c -o vstest.o