mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-23 22:12:46 +00:00
13 lines
200 B
Makefile
13 lines
200 B
Makefile
|
INCLUDE = -I../../include -I../../ebtree
|
||
|
|
||
|
CC = gcc
|
||
|
OPTIMIZE = -O2
|
||
|
DEFINE =
|
||
|
OBJS = flags
|
||
|
|
||
|
flags: flags.c
|
||
|
$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) *.[oas] *~
|