-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (28 loc) · 784 Bytes
/
Makefile
File metadata and controls
30 lines (28 loc) · 784 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
solver : common.o graphreader.o mkk.o nwe.o problem.o solver.o vogel.o zyklus.o stepstone.o modi.o
gcc -o solver common.o graphreader.o mkk.o nwe.o problem.o solver.o vogel.o zyklus.o stepstone.o modi.o
rm *.o
common.o : common.c solver.h
gcc -c common.c
graphreader.o : graphreader.c solver.h
gcc -c graphreader.c
mkk.o : mkk.c solver.h
gcc -c mkk.c
nwe.o : nwe.c solver.h
gcc -c nwe.c
problem.o : problem.c solver.h
gcc -c problem.c
solver.o : solver.c solver.h
gcc -c solver.c
vogel.o : vogel.c solver.h
gcc -c vogel.c
zyklus.o : zyklus.c solver.h
gcc -c zyklus.c
stepstone.o : stepstone.c solver.h
gcc -c stepstone.c
modi.o : modi.c solver.h
gcc -c modi.c
clean :
rm solver *.o
tarball :
rm solver.tar.bz2
tar -cjvf solver.tar.bz2 *.c *.h Makefile