-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (46 loc) · 1.54 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
###############################
# Makefile
# Řešení IJC-DU1
# Autor: Tomáš Matuš, FIT
# Login: xmatus37
# Datum: 15.3.2021
# Přeloženo: gcc 10.2.0
###############################
# Compiler and flags
CC = gcc
CFLAGS = -g -std=c11 -pedantic -Wall -Wextra -O2
# Compile everything
all: primes primes-i steg-decode
# Compile and run primes
run: primes primes-i
./primes
./primes-i
# Binaries
bitset.o: bitset.c bitset.h
$(CC) $(CFLAGS) -c bitset.c -o bitset.o
eratosthenes.o: eratosthenes.c eratosthenes.h
$(CC) $(CFLAGS) -c eratosthenes.c -o eratosthenes.o
primes.o: primes.c
$(CC) $(CFLAGS) -c primes.c -o primes.o
bitset-i.o: bitset.c bitset.h
$(CC) $(CFLAGS) -DUSE_INLINE -c bitset.c -o bitset-i.o
eratosthenes-i.o: eratosthenes.c eratosthenes.h
$(CC) $(CFLAGS) -DUSE_INLINE -c eratosthenes.c -o eratosthenes-i.o
primes-i.o: primes.c
$(CC) $(CFLAGS) -DUSE_INLINE -c primes.c -o primes-i.o
error.o: error.c error.h
$(CC) $(CFLAGS) -c error.c -o error.o
ppm.o: ppm.c ppm.h
$(CC) $(CFLAGS) -c ppm.c -o ppm.o
# Executables
primes: primes.o eratosthenes.o bitset.o error.o
$(CC) $(CFLAGS) -lm primes.o eratosthenes.o bitset.o error.o -o primes
primes-i: primes-i.o eratosthenes-i.o bitset-i.o error.o
$(CC) $(CFLAGS) -lm -DUSE_INLINE primes-i.o eratosthenes-i.o bitset-i.o error.o -o primes-i
steg-decode: steg-decode.c ppm.o eratosthenes.o bitset.o error.o
$(CC) $(CFLAGS) -lm steg-decode.c ppm.o eratosthenes.o bitset.o error.o -o steg-decode
# Misc
zip:
zip xmatus37.zip *.h *.c Makefile
clean:
rm *.o primes primes-i steg-decode