mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
43 lines
909 B
Makefile
43 lines
909 B
Makefile
SOFTWARE_MEANT_FOR_SORTIX=1
|
|
include ../build-aux/platform.mak
|
|
include ../build-aux/compiler.mak
|
|
include ../build-aux/version.mak
|
|
include ../build-aux/dirs.mak
|
|
|
|
OPTLEVEL?=$(DEFAULT_OPTLEVEL)
|
|
CXXFLAGS?=$(OPTLEVEL)
|
|
TESTDIR?=$(LIBEXECDIR)/test
|
|
|
|
CPPFLAGS:=$(CPPFLAGS) -DVERSIONSTR=\"$(VERSION)\" -DTESTDIR=\"$(TESTDIR)\"
|
|
CXXFLAGS:=$(CXXFLAGS) -Wall -Wextra -fno-exceptions -fno-rtti
|
|
|
|
BINARIES:=\
|
|
regress \
|
|
|
|
TESTS:=\
|
|
test-fmemopen \
|
|
test-pthread-argv \
|
|
test-pthread-basic \
|
|
test-pthread-main-join \
|
|
test-pthread-once \
|
|
test-pthread-self \
|
|
test-pthread-tls \
|
|
test-signal-raise \
|
|
|
|
all: $(BINARIES) $(TESTS)
|
|
|
|
.PHONY: all install clean
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(BINDIR)
|
|
install $(BINARIES) $(DESTDIR)$(BINDIR)
|
|
mkdir -p $(DESTDIR)$(TESTDIR)
|
|
ifneq ($(TESTS),)
|
|
install $(TESTS) $(DESTDIR)$(TESTDIR)
|
|
endif
|
|
|
|
%: %.c++
|
|
$(CXX) -std=gnu++11 $(CPPFLAGS) $(CXXFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -f $(BINARIES) $(TESTS) *.o
|