mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
21 lines
369 B
Makefile
21 lines
369 B
Makefile
include ../build-aux/platform.mak
|
|
include ../build-aux/compiler.mak
|
|
include ../build-aux/version.mak
|
|
include ../build-aux/dirs.mak
|
|
|
|
DOCUMENTS:=\
|
|
cross-compilation-sins \
|
|
obsolete-stuff \
|
|
porting-guide \
|
|
posix-divergence \
|
|
welcome \
|
|
|
|
all: $(BINARIES)
|
|
|
|
.PHONY: all install clean
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(DOCDIR)
|
|
cp -t $(DESTDIR)$(DOCDIR) $(DOCUMENTS)
|
|
|
|
clean:
|