Skip to content

Commit b4d71d7

Browse files
committed
Much better makefile. I'm learning.
1 parent 196aab2 commit b4d71d7

File tree

1 file changed

+27
-22
lines changed

1 file changed

+27
-22
lines changed

GCodeInterpreter/makefile

+27-22
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,46 @@
1-
interpreter : main.o instruction_type.o symbolTable.o stack.o stats.o heap.o gthread.o garbagecollection.o ginstructions.o searches.o
2-
gcc main.o instruction_type.o symbolTable.o stack.o stats.o heap.o gthread.o garbagecollection.o ginstructions.o searches.o -lgsl -lgslcblas -lm -o interpreter
1+
LDLIBS=-lgsl -lgslcblas -lm
2+
CFLAGS=-Wall -Werror
3+
OBJS=main.o garbagecollection.o ginstructions.o gthread.o heap.o instruction_type.o searches.o stack.o stats.o symbolTable.o
4+
CC=gcc
35

4-
ginstructions.o : ginstructions.h ginstructions.c
5-
gcc -c ginstructions.c
6+
default : interpreter
67

7-
instruction_type.o : instruction_type.h instruction_type.c
8-
gcc -c instruction_type.c
8+
interpreter : $(OBJS)
9+
$(CC) $(CFLAGS) $(OBJS) $(LDLIBS) -o interpreter
10+
11+
main.o : main.c instruction_type.h symbolTable.h stack.h stats.h heap.h gthread.h garbagecollection.h ginstructions.h searches.h machine.h
12+
13+
ginstructions.o : ginstructions.h ginstructions.c machine.h instruction_type.h symbolTable.h heap.h stack.h gthread.h stats.h
14+
15+
instruction_type.o : instruction_type.h instruction_type.c symbolTable.h lex.yy.c
916

1017
symbolTable.o : instruction_type.h symbolTable.h
11-
gcc -c symbolTable.c
1218

13-
heap.o : heap.h gthread.h heap.c
14-
gcc -c heap.c
19+
heap.o : heap.h gthread.h heap.c garbagecollection.h symbolTable.h
1520

1621
stack.o : heap.h stack.h stack.c
17-
gcc -c stack.c
1822

19-
stats.o : stats.h stats.c
20-
gcc -c stats.c
23+
stats.o : stats.h stats.c machine.h instruction_type.h
2124

22-
gthread.o : gthread.h gthread.c
23-
gcc -c gthread.c
25+
gthread.o : gthread.h gthread.c machine.h
2426

25-
searches.o : searches.h machine.h instruction_type.h searches.c
26-
gcc -c searches.c
27+
searches.o : searches.h machine.h instruction_type.h searches.c stats.h
2728

2829
garbagecollection.o : garbagecollection.h garbagecollection.c heap.h stack.h gthread.h machine.h
29-
gcc -c garbagecollection.c
3030

31-
main.o : main.c stack.c heap.c instruction_type.c gthread.c symbolTable.c garbagecollection.c lex.yy.c ginstructions.c searches.c
32-
gcc -c main.c
31+
#main.o : main.c stack.c heap.c instruction_type.c gthread.c symbolTable.c garbagecollection.c lex.yy.c ginstructions.c searches.c
3332

3433
lex.yy.c: gcode.lex
3534
flex gcode.lex
3635

3736
clean :
38-
rm instruction_type.o main.o symbolTable.o stack.o stats.o heap.o gthread.o garbagecollection.o ginstructions.o searches.o
37+
rm -f instruction_type.o main.o symbolTable.o stack.o stats.o heap.o gthread.o garbagecollection.o ginstructions.o searches.o interpreter
38+
39+
clang : CC=clang
40+
clang : interpreter
41+
42+
debug : CFLAGS+=-g
43+
debug : lex.yy.c interpreter
3944

40-
debug : lex.yy.c
41-
gcc -Wall -g main.c instruction_type.c symbolTable.c stack.c stats.c heap.c gthread.c garbagecollection.c ginstructions.c searches.c -lgsl -lgslcblas -lm -o interpreter
45+
profile : CFLAGS+=-pg
46+
profile : interpreter

0 commit comments

Comments
 (0)