forked from dlang/dmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posix.mak
43 lines (31 loc) · 1.17 KB
/
posix.mak
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
INSTALL_DIR=$(PWD)/../install
ECTAGS_LANGS = Make,C,C++,D,Sh
ECTAGS_FILES = src/*.[chd] src/backend/*.[chd] src/root/*.[chd] src/tk/*.[chd]
.PHONY: all clean test install auto-tester-build auto-tester-test toolchain-info
all:
$(QUIET)$(MAKE) -C src -f posix.mak
auto-tester-build: toolchain-info
$(QUIET)$(MAKE) -C src -f posix.mak auto-tester-build ENABLE_RELEASE=1
auto-tester-test: test
toolchain-info:
$(QUIET)$(MAKE) -C src -f posix.mak toolchain-info
clean:
$(QUIET)$(MAKE) -C src -f posix.mak clean
$(QUIET)$(MAKE) -C test -f Makefile clean
$(RM) tags
test:
$(QUIET)$(MAKE) -C test -f Makefile
html:
$(QUIET)$(MAKE) -C src -f posix.mak html
# Creates Exuberant Ctags tags file
tags: posix.mak $(ECTAGS_FILES)
ctags --sort=yes --links=no --excmd=number --languages=$(ECTAGS_LANGS) \
--langmap='C++:+.c,C++:+.h' --extra=+f --file-scope=yes --fields=afikmsSt --totals=yes posix.mak $(ECTAGS_FILES)
install: all
$(MAKE) INSTALL_DIR=$(INSTALL_DIR) -C src -f posix.mak install
cp -r samples $(INSTALL_DIR)
mkdir -p $(INSTALL_DIR)/man
cp -r docs/man/* $(INSTALL_DIR)/man/
style:
@echo "To be done"
.DELETE_ON_ERROR: # GNU Make directive (delete output files on error)