File: makefile

package info (click to toggle)
mescc-tools 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,640 kB
  • sloc: ansic: 9,338; asm: 2,350; sh: 360; makefile: 163; lisp: 83
file content (180 lines) | stat: -rw-r--r-- 4,536 bytes parent folder | download
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
## Copyright (C) 2017 Jeremiah Orians
## This file is part of mescc-tools.
##
## mescc-tools is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## mescc-tools is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with mescc-tools.  If not, see <http://www.gnu.org/licenses/>.

# Prevent rebuilding
VPATH = bin:test/results
PACKAGE = mescc-tools

all: M1 hex2 get_machine blood-elf kaem catm
.NOTPARALLEL:
CC=gcc
CFLAGS:=$(CFLAGS) -D_GNU_SOURCE -std=c99 -ggdb -fno-common

M1: M1-macro.c stringify.c M2libc/bootstrappable.c | bin
	$(CC) $(CFLAGS) M1-macro.c \
	stringify.c \
	M2libc/bootstrappable.c \
	-o bin/M1

hex2: hex2.c hex2_linker.c hex2_word.c M2libc/bootstrappable.c | bin
	$(CC) $(CFLAGS) hex2.c \
	hex2_linker.c \
	hex2_word.c \
	M2libc/bootstrappable.c \
	-o bin/hex2

get_machine: get_machine.c M2libc/bootstrappable.c | bin
	$(CC) $(CFLAGS) get_machine.c \
	M2libc/bootstrappable.c \
	-o bin/get_machine

blood-elf: blood-elf.c stringify.c M2libc/bootstrappable.c | bin
	$(CC) $(CFLAGS) blood-elf.c \
	stringify.c \
	M2libc/bootstrappable.c \
	-o bin/blood-elf

kaem: Kaem/kaem.c Kaem/variable.c Kaem/kaem_globals.c M2libc/bootstrappable.c | bin
	$(MAKE) -C Kaem kaem

catm: catm.c | bin
	$(CC) $(CFLAGS) catm.c -o bin/catm

# Clean up after ourselves
.PHONY: clean
clean:
	rm -rf bin/ test/results/
	./test/test1/cleanup.sh
	./test/test2/cleanup.sh
	./test/test3/cleanup.sh
	./test/test4/cleanup.sh
	./test/test5/cleanup.sh
	./test/test6/cleanup.sh
	./test/test7/cleanup.sh
	./test/test8/cleanup.sh
	./test/test9/cleanup.sh
	./test/test10/cleanup.sh
	./test/test11/cleanup.sh
	./test/test12/cleanup.sh
	./test/test13/cleanup.sh
	$(MAKE) -C Kaem clean

# A cleanup option we probably don't need
.PHONY: clean-hard
clean-hard: clean
	git reset --hard
	git clean -fd

# Directories
bin:
	mkdir -p bin

results:
	mkdir -p test/results

# tests
test: test0-binary \
	test1-binary \
	test2-binary \
	test3-binary \
	test4-binary \
	test5-binary \
	test6-binary \
	test7-binary \
	test8-binary \
	test9-binary \
	test10-binary \
	test11-binary \
	test12-binary \
	test13-binary | results
	./test.sh

test0-binary: results hex2 get_machine | results
	test/test0/hello.sh

test1-binary: results hex2 M1 get_machine | results
	test/test1/hello.sh

test2-binary: results hex2 M1 get_machine | results
	test/test2/hello.sh

test3-binary: results hex2 M1 get_machine | results
	test/test3/hello.sh

test4-binary: results hex2 M1 get_machine | results
	test/test4/hello.sh

test5-binary: results hex2 M1 get_machine | results
	test/test5/hello.sh

test6-binary: results hex2 M1 get_machine | results
	test/test6/hello.sh

test7-binary: results hex2 M1 get_machine | results
	test/test7/hello.sh

test8-binary: results hex2 M1 get_machine | results
	test/test8/hello.sh

test9-binary: results hex2 M1 blood-elf get_machine | results
	test/test9/hello.sh

test10-binary: results hex2 M1 get_machine | results
	test/test10/hello.sh

test11-binary: results hex2 M1 blood-elf get_machine | results
	test/test11/hello.sh

test12-binary: results hex2 M1 blood-elf get_machine | results
	test/test12/hello.sh

test13-binary: results hex2 M1 blood-elf get_machine | results
	test/test13/hello.sh

# Generate test answers
.PHONY: Generate-test-answers
Generate-test-answers:
	sha256sum test/results/* >| test/test.answers

DESTDIR:=
PREFIX:=/usr/local
bindir:=$(DESTDIR)$(PREFIX)/bin
.PHONY: install
install: M1 hex2 blood-elf kaem get_machine
	mkdir -p $(bindir)
	cp $^ $(bindir)

###  dist
.PHONY: dist

COMMIT=$(shell git describe --dirty)
TARBALL_VERSION=$(COMMIT:Release_%=%)
TARBALL_DIR:=$(PACKAGE)-$(TARBALL_VERSION)
TARBALL=$(TARBALL_DIR).tar.gz
# Be friendly to Debian; avoid using EPOCH
MTIME=$(shell git show HEAD --format=%ct --no-patch)
# Reproducible tarball
TAR_FLAGS=--sort=name --mtime=@$(MTIME) --owner=0 --group=0 --numeric-owner --mode=go=rX,u+rw,a-s

$(TARBALL):
	(git ls-files					\
	    --exclude=$(TARBALL_DIR);			\
	    echo $^ | tr ' ' '\n')			\
	    | tar $(TAR_FLAGS)				\
	    --transform=s,^,$(TARBALL_DIR)/,S -T- -cf-	\
	    | gzip -c --no-name > $@

dist: $(TARBALL)