-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
17 lines (16 loc) · 812 Bytes
/
makefile
File metadata and controls
17 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
assembler: main.o macro.o firstScan.o secondScan.o dataStructures.o filesGenerator.o global.o
gcc -pedantic -ansi -Wall -g main.o macro.o firstScan.o secondScan.o dataStructures.o filesGenerator.o global.o -o assembler
main.o: assemblerMain.c
gcc -c -pedantic -ansi -Wall -g assemblerMain.c -o main.o
macro.o: macro.c
gcc -c -pedantic -ansi -Wall macro.c -o macro.o
firstScan.o: firstScan.c
gcc -c -pedantic -ansi -Wall firstScan.c -o firstScan.o
secondScan.o: secondScan.c
gcc -c -pedantic -ansi -Wall secondScan.c -o secondScan.o
global.o: global.c
gcc -c -pedantic -ansi -Wall global.c -o global.o
dataStructures.o: dataStructures.c
gcc -c -pedantic -ansi -Wall dataStructures.c -o dataStructures.o
filesGenerator.o: filesGenerator.c
gcc -c -pedantic -ansi -Wall filesGenerator.c -o filesGenerator.o