1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/regress/Makefile

48 lines
968 B
Makefile
Raw Normal View History

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