forked from freebasic/fbfrog
-
Notifications
You must be signed in to change notification settings - Fork 2
/
makefile
59 lines (42 loc) · 1.66 KB
/
makefile
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
FBC := fbc
EXEEXT := $(shell $(FBC) -print x)
prefix := /usr/local
-include config.mk
EXTRA_FBFLAGS := -maxerr 1
FBFROG_FBFLAGS := -m fbfrog $(FBFLAGS) $(EXTRA_FBFLAGS)
TESTRUNNER_FBFLAGS := $(FBFLAGS) $(EXTRA_FBFLAGS)
SOURCES := $(sort $(wildcard src/*.bas))
HEADERS := $(wildcard src/*.bi)
OBJECTS := $(patsubst src/%.bas,src/obj/%.o,$(SOURCES))
# We don't want to use any of make's built-in suffixes/rules
.SUFFIXES:
ifndef V
QUIET_FBC = @echo "FBC $<";
QUIET_FBCLIB = @echo "FBCLIB $@";
QUIET_FBCLINK = @echo "FBCLINK $@";
endif
build: fbfrog$(EXEEXT) tests/run$(EXEEXT) unittests/run$(EXEEXT)
fbfrog$(EXEEXT): src/obj/libfbfrog.a
$(QUIET_FBCLINK)$(FBC) $(FBFROG_FBFLAGS) $^ -x $@
src/obj/libfbfrog.a: $(OBJECTS)
$(QUIET_FBCLIB)$(FBC) $(FBFROG_FBFLAGS) -lib $^ -x $@
$(OBJECTS): src/obj/%.o: src/%.bas $(HEADERS)
$(QUIET_FBC)$(FBC) $(FBFROG_FBFLAGS) $< -c -o $@
tests/run$(EXEEXT): tests/run.bas src/obj/libfbfrog.a
$(QUIET_FBCLINK)$(FBC) $^ $(TESTRUNNER_FBFLAGS) -x $@
UNITTESTS_HEADERS := $(HEADERS) $(wildcard unittests/*.bi)
unittests/run$(EXEEXT): unittests/run.bas src/obj/libfbfrog.a $(UNITTESTS_HEADERS)
$(QUIET_FBCLINK)$(FBC) $< src/obj/libfbfrog.a $(TESTRUNNER_FBFLAGS) -x $@
tests: build unittests
tests/run$(EXEEXT)
unittests: build
unittests/run$(EXEEXT)
clean:
rm -f fbfrog$(EXEEXT) tests/run$(EXEEXT) unittests/run$(EXEEXT) src/obj/*.a src/obj/*.o
install:
install fbfrog$(EXEEXT) "$(prefix)/bin"
cp -R include/fbfrog "$(prefix)/include"
COMMIT = $(shell git rev-parse --verify HEAD)
tarball:
git archive --format tar --prefix "fbfrog-$(COMMIT)/" $(COMMIT) | xz --stdout > fbfrog-$(COMMIT).tar.xz
.PHONY: all tests clean install tarball