-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (16 loc) · 819 Bytes
/
Makefile
File metadata and controls
29 lines (16 loc) · 819 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
JerryBoree : JerryBoreeMain.o MultiValueHashTable.o HashTable.o KeyValuePair.o LinkedList.o Jerry.o
gcc JerryBoreeMain.o MultiValueHashTable.o HashTable.o KeyValuePair.o LinkedList.o Jerry.o -o JerryBoree
JerryBoreeMain.o : JerryBoreeMain.c MultiValueHashTable.h HashTable.h Defs.h LinkedList.h KeyValuePair.h Jerry.h
gcc -c JerryBoreeMain.c
MultiValueHashTable.o : MultiValueHashTable.c MultiValueHashTable.h HashTable.h Defs.h LinkedList.h KeyValuePair.h
gcc -c MultiValueHashTable.c
HashTable.o: HashTable.c HashTable.h Defs.h LinkedList.h KeyValuePair.h
gcc -c HashTable.c
KeyValuePair.o: KeyValuePair.c KeyValuePair.h Defs.h
gcc -c KeyValuePair.c
LinkedList.o: LinkedList.c LinkedList.h Defs.h
gcc -c LinkedList.c
Jerry.o: Jerry.c Jerry.h Defs.h
gcc -c Jerry.c
clean:
rm -f *.o JerryBoree