summaryrefslogtreecommitdiff
path: root/deps/hdr_histogram/Makefile
blob: 83d3760ae8d14ade7453d4ac34f20a992e62e903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
STD=
WARN= -Wall
OPT= -Os

R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
R_LDFLAGS= $(LDFLAGS)
DEBUG= -g

R_CC=$(CC) $(R_CFLAGS)
R_LD=$(CC) $(R_LDFLAGS)

hdr_histogram.o: hdr_histogram.h hdr_histogram.c 

.c.o:
	$(R_CC) -c  $< 

clean:
	rm -f *.o