-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
53 lines (37 loc) · 1.49 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
# Horrible Makefile allowing for a rebuild of some examples... if you've got a while.
all: base\ 10\ 16383x16383\ [1,\ 10]x[0,\ 10].png \
base\ 3\ 16383x16383\ [1,\ 3]x[0,\ 3].png \
base\ 10\ 16383x16383\ [0,\ 24]x[0,\ 24].png \
base\ 9\ 16383x16383\ [0,\ 24]x[0,\ 24].png \
base\ 8\ 16383x16383\ [0,\ 24]x[0,\ 24].png \
base\ 7\ 16383x16383\ [0,\ 24]x[0,\ 24].png \
base\ 6\ 16383x16383\ [0,\ 24]x[0,\ 24].png \
base\ 5\ 16383x16383\ [0,\ 24]x[0,\ 24].png
bx: bx.c
cc -Ofast -std=c11 -Wall -o $@ $< -lm
%.png: %.pgm
convert "$<" "$@"
base\ 10\ 16383x16383\ [0,\ 10]x[0,\ 10].pgm: bx
./bx 10 16383 0 10 16383 0 10
base\ 10\ 16383x16383\ [1,\ 10]x[0,\ 10].pgm: bx
./bx 10 16383 1 10 16383 0 10
base\ 3\ 16383x16383\ [1,\ 3]x[0,\ 3].pgm: bx
./bx 3 16383 1 3 16383 0 3
base\ 2\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 2 16383 0 24 16383 0 24
base\ 3\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 3 16383 0 24 16383 0 24
base\ 4\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 4 16383 0 24 16383 0 24
base\ 5\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 5 16383 0 24 16383 0 24
base\ 6\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 6 16383 0 24 16383 0 24
base\ 7\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 7 16383 0 24 16383 0 24
base\ 8\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 8 16383 0 24 16383 0 24
base\ 9\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 9 16383 0 24 16383 0 24
base\ 10\ 16383x16383\ [0,\ 24]x[0,\ 24].pgm: bx
./bx 10 16383 0 24 16383 0 24