mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
31 lines
656 B
Makefile
31 lines
656 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)
|
||
|
|
||
|
CPPFLAGS:=$(CPPFLAGS) -DVERSIONSTR=\"$(VERSION)\"
|
||
|
CXXFLAGS:=$(CXXFLAGS) -Wall -Wextra -fno-exceptions -fno-rtti
|
||
|
|
||
|
BINARIES:=sh sortix-sh
|
||
|
|
||
|
all: $(BINARIES)
|
||
|
|
||
|
.PHONY: all install clean
|
||
|
|
||
|
install: all
|
||
|
mkdir -p $(DESTDIR)$(BINDIR)
|
||
|
install $(BINARIES) $(DESTDIR)$(BINDIR)
|
||
|
|
||
|
sortix-sh: sh.cpp
|
||
|
$(CXX) -std=gnu++11 $(CPPFLAGS) $(CXXFLAGS) $< -o $@
|
||
|
|
||
|
sh: proper-sh.cpp
|
||
|
$(CXX) -std=gnu++11 $(CPPFLAGS) $(CXXFLAGS) $< -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -f $(BINARIES) *.o
|