|
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 |
3 | 5 |
|
4 |
| -ginstructions.o : ginstructions.h ginstructions.c |
5 |
| - gcc -c ginstructions.c |
| 6 | +default : interpreter |
6 | 7 |
|
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 |
9 | 16 |
|
10 | 17 | symbolTable.o : instruction_type.h symbolTable.h
|
11 |
| - gcc -c symbolTable.c |
12 | 18 |
|
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 |
15 | 20 |
|
16 | 21 | stack.o : heap.h stack.h stack.c
|
17 |
| - gcc -c stack.c |
18 | 22 |
|
19 |
| -stats.o : stats.h stats.c |
20 |
| - gcc -c stats.c |
| 23 | +stats.o : stats.h stats.c machine.h instruction_type.h |
21 | 24 |
|
22 |
| -gthread.o : gthread.h gthread.c |
23 |
| - gcc -c gthread.c |
| 25 | +gthread.o : gthread.h gthread.c machine.h |
24 | 26 |
|
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 |
27 | 28 |
|
28 | 29 | garbagecollection.o : garbagecollection.h garbagecollection.c heap.h stack.h gthread.h machine.h
|
29 |
| - gcc -c garbagecollection.c |
30 | 30 |
|
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 |
33 | 32 |
|
34 | 33 | lex.yy.c: gcode.lex
|
35 | 34 | flex gcode.lex
|
36 | 35 |
|
37 | 36 | 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 |
39 | 44 |
|
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