mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 23:14:46 +00:00
fc80e30217
The only leftovers were the unused compiler.h file and the LICENSE file which is already mentioned in each and every ebtree file header. A few build paths were updated in the contrib/ directory not to mention this directory anymore, and all its occurrences were dropped from the main makefile. From now on no other include path but include/ will be needed anymore to build any file.
18 lines
267 B
Makefile
18 lines
267 B
Makefile
INCLUDE = -I../../include
|
|
|
|
CC = gcc
|
|
OPTIMIZE = -O2
|
|
DEFINE =
|
|
OBJS = flags poll
|
|
|
|
all: $(OBJS)
|
|
|
|
flags: flags.c
|
|
$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
|
|
|
|
poll: poll.c
|
|
$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.[oas] *~
|