-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 747 Bytes
/
Makefile
File metadata and controls
38 lines (26 loc) · 747 Bytes
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
main: 20181643.o shell.o memory.o optab.o linked_list.o utils.o assembler.o symtab.o loader.o estab.o exec.o
gcc -Wall -o 20181643.out 20181643.o shell.o memory.o optab.o linked_list.o utils.o assembler.o symtab.o loader.o estab.o exec.o
20181643.o: 20181643.c
gcc -Wall -c 20181643.c
shell.o: shell.c
gcc -Wall -c shell.c
memory.o: memory.c
gcc -Wall -c memory.c
optab.o: optab.c
gcc -Wall -c optab.c
linked_list.o: linked_list.c
gcc -Wall -c linked_list.c
utils.o: utils.c
gcc -Wall -c utils.c
assembler.o: assembler.c
gcc -Wall -c assembler.c
symtab.o: symtab.c
gcc -Wall -c symtab.c
loader.o: loader.c
gcc -Wall -c loader.c
estab.o: estab.c
gcc -Wall -c estab.c
exec.o: exec.c
gcc -Wall -c exec.c
clean:
rm *.o *.out