mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-19 02:29:31 -05:00
The following directories were moved from contrib/ to dev/ to make their use case a bit clearer. In short, only developers are expected to ever go there. The makefile was updated to build and clean from these ones. base64/ flags/ hpack/ plug_qdisc/ poll/ tcploop/ trace/
14 lines
199 B
Makefile
14 lines
199 B
Makefile
INCLUDE = -I../../include
|
|
|
|
CC = gcc
|
|
OPTIMIZE = -O2
|
|
DEFINE =
|
|
OBJS = flags
|
|
|
|
all: $(OBJS)
|
|
|
|
flags: flags.c
|
|
$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.[oas] *~
|