-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
54 lines (42 loc) · 1.28 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
#CC=clang
CC=gcc
#CFLAGS=--std=gnu99 -Wall -pedantic -Werror -g
CFLAGS=--std=gnu99 -Wall -pedantic -Werror -g -fopenmp
#CFLAGS=--std=gnu99 -Wall -pedantic -Werror -g -pg -fopenmp
#RELFLAGS=-Ofast
RELFLATS=-O0
DEBUGFLAGS=-DDEBUG -no-pie -pg -O0
# TODO: only enable this feature if the git repository is owned by the same
# user as the one running the script
#GIT_COMMIT=$(shell ./scripts/git_status.sh)
#LIBS=-lrt -lm
LIBS=-lm
DEPS=sim.h print.h command.h network.h arch.h description.h
OBJ=main.o sim.o command.o network.o arch.o description.o
DEBUGDIR=debug
RELDIR=release
RELOBJ=$(addprefix $(RELDIR)/,$(OBJ))
RELEXE=$(RELDIR)/sim
DEBUGOBJ=$(addprefix $(DEBUGDIR)/,$(OBJ))
DEBUGEXE=$(DEBUGDIR)/sim
.PHONY: all sim release debug clean prep
all: prep sim
sim: release
cp $(RELEXE) sim
release: $(RELEXE)
debug: prep $(DEBUGEXE)
$(RELDIR)/%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) $(RELFLAGS) -DGIT_COMMIT=\"$(GIT_COMMIT)\"
$(RELEXE): $(RELOBJ)
$(CC) -o $@ $^ $(CFLAGS) $(RELFLAGS) $(LIBS)
$(DEBUGDIR)/%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) $(DEBUGFLAGS) -DGIT_COMMIT=\"$(GIT_COMMIT)\"
$(DEBUGEXE): $(DEBUGOBJ)
$(CC) -o $@ $^ $(CFLAGS) $(DEBUGFLAG) $(LIBS)
clean:
rm -f $(RELEXE)
rm -f $(DEBUGEXE)
rm -f $(RELOBJ)
rm -f $(DEBUGOBJ)
prep:
@mkdir -p $(RELDIR) $(DEBUGDIR) runs