blob: 2cafdf895df86c9fbc242566edcf0a6c40c06fe8 (
plain)
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
|
# multicat Makefile
CFLAGS += -Wall -O3 -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -D_ISOC99_SOURCE -D_BSD_SOURCE
CFLAGS += -g
LDFLAGS += -lrt
OBJ_MULTICAT = multicat.o util.o
OBJ_INGESTS = ingests.o util.o
OBJ_AGGREGARTP = aggregartp.o util.o
OBJ_DESAGGREGARTP = desaggregartp.o util.o
OBJ_OFFSETS = offsets.o
all: multicat ingests aggregartp desaggregartp offsets
$(OBJ_MULTICAT): Makefile util.h
$(OBJ_INGESTS): Makefile util.h
$(OBJ_AGGREGARTP): Makefile util.h
$(OBJ_DESAGGREGARTP): Makefile util.h
$(OBJ_OFFSETS): Makefile
multicat: $(OBJ_MULTICAT)
$(CC) $(LDFLAGS) -o $@ $(OBJ_MULTICAT)
ingests: $(OBJ_INGESTS)
$(CC) $(LDFLAGS) -o $@ $(OBJ_INGESTS)
aggregartp: $(OBJ_AGGREGARTP)
$(CC) $(LDFLAGS) -o $@ $(OBJ_AGGREGARTP)
desaggregartp: $(OBJ_DESAGGREGARTP)
$(CC) $(LDFLAGS) -o $@ $(OBJ_DESAGGREGARTP)
offsets: $(OBJ_OFFSETS)
$(CC) -o $@ $(OBJ_OFFSETS)
clean:
-rm -f multicat $(OBJ_MULTICAT) ingests $(OBJ_INGESTS) aggregartp $(OBJ_AGGREGARTP) desaggregartp $(OBJ_DESAGGREGARTP) offsets $(OBJ_OFFSETS)
|