forked from LPD-EPFL/ASCYLIB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·37 lines (25 loc) · 1 KB
/
Makefile
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
ROOT = ../..
include $(ROOT)/common/Makefile.common
BINS = $(BINDIR)/lf-pq_lotanshavit
PROF = $(ROOT)/src
.PHONY: all clean
all: main
ALGO_O = lotanshavit_lf.o
ALGO_H = lotanshavit_lf.h
ALGO_C = lotanshavit_lf.c
measurements.o:
$(CC) $(CFLAGS) -c -o $(BUILDIR)/measurements.o $(PROF)/measurements.c
ssalloc.o:
$(CC) $(CFLAGS) -c -o $(BUILDIR)/ssalloc.o $(PROF)/ssalloc.c
skiplist.o:
$(CC) $(CFLAGS) -c -o $(BUILDIR)/skiplist.o skiplist.c
$(ALGO_O): skiplist.h
$(CC) $(CFLAGS) -c -o $(BUILDIR)/$(ALGO_O) $(ALGO_C)
intPriorityQueue.o: skiplist.h $(ALGO_H)
$(CC) $(CFLAGS) -c -o $(BUILDIR)/intPriorityQueue.o intPriorityQueue.c
test.o: skiplist.h $(ALGO_H) intPriorityQueue.h
$(CC) $(CFLAGS) -c -o $(BUILDIR)/test.o $(TEST_FILE)
main: measurements.o ssalloc.o skiplist.o $(ALGO_O) intPriorityQueue.o test.o
$(CC) $(CFLAGS) $(BUILDIR)/measurements.o $(BUILDIR)/ssalloc.o $(BUILDIR)/skiplist.o $(BUILDIR)/$(ALGO_O) $(BUILDIR)/intPriorityQueue.o $(BUILDIR)/test.o -o $(BINS) $(LDFLAGS)
clean:
-rm -f $(BINS)