-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (18 loc) · 802 Bytes
/
Makefile
File metadata and controls
26 lines (18 loc) · 802 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
puff :: forest.o forest_node.o huff_tree_node.o llist.o llist_node.o puff.o
gcc -o puff puff.o forest.o forest_node.o huff_tree_node.o llist.o llist_node.o
puff.o: forest.h forest_node.h huff_tree_node.h puff.c llist_node.h
gcc -c puff.c
huff: forest.o forest_node.o huff_tree_node.o llist.o llist_node.o huff.o
gcc -o huff huff.o forest.o forest_node.o huff_tree_node.o llist.o llist_node.o
huff.o: forest.h forest_node.h huff_tree_node.h huff.c llist_node.h
gcc -c huff.c
forest.o: forest.h forest.c forest_node.h
gcc -c forest.c
forest_node.o: forest_node.h forest_node.c
gcc -c forest_node.c
huff_tree_node.o: huff_tree_node.h huff_tree_node.c
gcc -c huff_tree_node.c
llist.o: llist_node.h llist.h llist.c
gcc -c llist.c
llist_node.o: llist_node.h llist_node.c
gcc -c llist_node.c