mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-10 18:33:19 +00:00
c77b875e89
Try again while using gmake for tests on macOS on travis-ci.
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
TEST = test
|
|
OBJS = test.o base32.o base64.o common.o read.o dns.o encoding.o login.o user.o fw_query.o
|
|
SRCOBJS = ../src/base32.o ../src/base64.o ../src/common.o ../src/read.o ../src/dns.o ../src/encoding.o ../src/login.o ../src/md5.o ../src/user.o ../src/fw_query.o
|
|
|
|
OS = `uname | tr "a-z" "A-Z"`
|
|
|
|
CHECK_PATH = /usr/local
|
|
LDFLAGS = -L$(CHECK_PATH)/lib `pkg-config check --libs` -lpthread `sh ../src/osflags $(TARGETOS) link`
|
|
CFLAGS = -std=c99 -g -Wall -D$(OS) `pkg-config check --cflags` -I../src -I$(CHECK_PATH)/include -pedantic `sh ../src/osflags $(TARGETOS) cflags`
|
|
|
|
# Hide clang warnings from check.h about "token pasting of ',' and __VA_ARGS__ is a GNU extension"
|
|
# and "'format' attribute argument not supported: gnu_printf"
|
|
ifeq (clang,$(findstring clang,$(CC)))
|
|
CFLAGS += -Wno-gnu-zero-variadic-macro-arguments -Wno-ignored-attributes
|
|
endif
|
|
|
|
all: $(TEST)
|
|
@LD_LIBRARY_PATH=${CHECK_PATH}/lib ./$(TEST)
|
|
|
|
$(TEST): $(OBJS) $(SRCOBJS)
|
|
@echo LD $(TEST)
|
|
@$(CC) -o $@ $(SRCOBJS) $(OBJS) $(LDFLAGS)
|
|
|
|
.c.o:
|
|
@echo CC $<
|
|
@$(CC) $(CFLAGS) -c $<
|
|
|
|
clean:
|
|
@echo "Cleaning tests/"
|
|
@rm -f *~ *.core $(TEST) $(OBJS)
|
|
|