mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-14 16:23:38 -05:00
16 lines
238 B
Makefile
16 lines
238 B
Makefile
|
|
include ../../include/make/verbose.mk
|
||
|
|
|
||
|
|
CC = cc
|
||
|
|
OPTIMIZE = -O2 -g
|
||
|
|
DEFINE =
|
||
|
|
INCLUDE =
|
||
|
|
OBJS = ncpu.so
|
||
|
|
|
||
|
|
all: $(OBJS)
|
||
|
|
|
||
|
|
%.so: %.c
|
||
|
|
$(cmd_CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -fPIC -shared -o $@ $^
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f $(OBJS) *.[oas] *~
|