-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
69 lines (59 loc) · 1.08 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
60
61
62
63
64
65
66
67
68
69
#
#++
#
#
# # #
# ## ## ###### #####
# # # # # # #
# # # # # #
# # # # #
# # # # #
# # # ###### #
# ------------------
# My Z80 Tools
#
##
# AUTHOR:
# Piergiorgio Betti <pbetti@lpconsul.net>
#
# LICENSE: See "License.txt" under MZT top-level source directory
#
# HISTORY:
# -[Date]- -[Who]------------- -[What]---------------------------------------
# 20141027 P. Betti Creation date
#--
#
# Set this to desired installation path
INSTALL_PREFIX=/usr/local
#
DATE=20141027
VERSION=1.0.0
RELFILES=CMakeLists.txt \
License.txt \
Makefile \
mzt.kdev4 \
mdz80 \
mld80 \
mzmac
all: mzt
mzt:
if [ ! -f build/Makefile ]; then \
mkdir -p build; \
cd build; \
cmake -DCMAKE_INSTALL_PREFIX=$(INSTALL_PREFIX) ../;\
cd ..; \
fi; \
cd build; make; \
cd ..
install: all
cd build; \
make install; \
cd ..
clean:
rm -rf build
rm -f *.tar.bz2 *.tar.gz
release:
tar jcf mzt-$(VERSION).tar.bz2 $(RELFILES)
tar zcf mzt-$(VERSION).tar.gz $(RELFILES)
depend:
@echo "Depencies are generated at compile time."