sortix-mirror/regress/Makefile

52 lines
1.1 KiB
Makefile
Raw Normal View History

2014-02-20 14:48:20 +00:00
SOFTWARE_MEANT_FOR_SORTIX=1
2014-06-28 14:10:20 +00:00
include ../build-aux/platform.mak
include ../build-aux/compiler.mak
include ../build-aux/version.mak
include ../build-aux/dirs.mak
2014-02-20 14:48:20 +00:00
OPTLEVEL?=$(DEFAULT_OPTLEVEL)
2016-02-28 22:18:13 +00:00
CFLAGS?=$(OPTLEVEL)
2014-02-20 14:48:20 +00:00
TESTDIR?=$(LIBEXECDIR)/test
CPPFLAGS:=$(CPPFLAGS) -DVERSIONSTR=\"$(VERSION)\" -DTESTDIR=\"$(TESTDIR)\"
2016-02-28 22:18:13 +00:00
CFLAGS:=$(CFLAGS) -Wall -Wextra
2014-02-20 14:48:20 +00:00
BINARIES:=\
regress \
TESTS:=\
2014-02-25 17:12:55 +00:00
test-fmemopen \
test-pipe-one-byte \
2014-07-11 15:41:22 +00:00
test-pthread-argv \
2014-02-20 14:48:52 +00:00
test-pthread-basic \
test-pthread-main-exit \
2014-02-21 15:20:31 +00:00
test-pthread-main-join \
2014-02-20 18:47:29 +00:00
test-pthread-once \
2014-02-20 15:17:40 +00:00
test-pthread-self \
2014-02-20 14:55:16 +00:00
test-pthread-tls \
2014-02-20 19:01:21 +00:00
test-signal-raise \
test-unix-socket-fd-cycle \
test-unix-socket-fd-leak \
test-unix-socket-fd-pass \
test-unix-socket-fd-trunc \
test-unix-socket-name \
2016-08-06 13:44:37 +00:00
test-unix-socket-shutdown \
2014-02-20 14:48:20 +00:00
all: $(BINARIES) $(TESTS)
.PHONY: all install clean
2014-02-20 14:48:20 +00:00
install: all
mkdir -p $(DESTDIR)$(BINDIR)
install $(BINARIES) $(DESTDIR)$(BINDIR)
mkdir -p $(DESTDIR)$(TESTDIR)
ifneq ($(TESTS),)
install $(TESTS) $(DESTDIR)$(TESTDIR)
endif
2016-02-28 22:18:13 +00:00
%: %.c
$(CC) -std=gnu11 $(CFLAGS) $(CPPFLAGS) $< -o $@
2014-02-20 14:48:20 +00:00
clean:
rm -f $(BINARIES) $(TESTS) *.o