forked from Configi/configi.old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (23 loc) · 681 Bytes
/
Copy pathMakefile
File metadata and controls
23 lines (23 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.DEFAULT_GOAL= release
EXE:= cfg-agent
SRC:= cfg-policy
SRC_DIR:= cfg-modules cfg-core
SRC_C:=
VENDOR:= cimicida lib tsort inspect
VENDOR_DIR:= plc
VENDOR_C:= inotify posix factid px qhttp auxlib array qsocket
MAKEFLAGS= --silent
HOST_CC= cc
CROSS=
CROSS_CC=
CCOPT= -Os -mtune=generic -mmmx -msse -msse2 -fomit-frame-pointer -pipe
CFLAGS+= -ffunction-sections -fdata-sections -fno-asynchronous-unwind-tables -fno-unwind-tables
LDFLAGS= -Wl,--gc-sections -Wl,--strip-all -Wl,--relax -Wl,--sort-common
luaDEFINES:= -DLUA_USE_POSIX
TARGET_CCOPT= $(CCOPT)
TARGET_CFLAGS= $(CFLAGS)
TARGET_LDFLAGS= $(LDFLAGS)
include test.mk
include lib/tests.mk
include lib/std.mk
include lib/rules.mk