-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (31 loc) · 687 Bytes
/
Copy pathMakefile
File metadata and controls
41 lines (31 loc) · 687 Bytes
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
subdirs := DOCUMENTS OFFICIAL PLAYER VIEWER EDITOR SAMPLES
.PHONY: all $(subdirs)
all: $(subdirs)
OFFICIAL:
cd official; make
PLAYER:
cd player; make
DOCUMENTS:
VIEWER:
EDITOR:
SAMPLES:
tags:
etags */*.hpp */*.cpp */*.js */*.html
tar: distclean
tar zcvf ../samurai-software-`date -Iminutes` *
clean:
rm -rf *~ */*~ \#*\#
cd documents; make clean
cd official; make clean
cd player; make clean
cd viewer; make clean
cd editor; make clean
cd samples; make clean
distclean:
rm -rf *~ */*~ \#*\# TAGS
cd documents; make distclean
cd official; make distclean
cd player; make distclean
cd viewer; make distclean
cd editor; make distclean
cd samples; make distclean