forked from bonsai/harakit
Makefile: directory specification changes
This commit is contained in:
parent
31ae3d1997
commit
c75bb93001
24
Makefile
24
Makefile
@ -13,18 +13,18 @@
|
|||||||
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
|
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
|
||||||
.PRAGMA: command_comment # breaks without this?
|
.PRAGMA: command_comment # breaks without this?
|
||||||
|
|
||||||
DESTDIR=./dist
|
DESTDIR ?= dist
|
||||||
PREFIX=/usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
||||||
SYSEXITS!=printf '\043include <sysexits.h>\n' | cpp -M - | sed 's/ /\n/g' \
|
SYSEXITS != printf '\043include <sysexits.h>\n' | cpp -M - | sed 's/ /\n/g' \
|
||||||
| sed -n 's/sysexits\.h//p' || printf 'include/\n'
|
| sed -n 's/sysexits\.h//p' || printf 'include\n'
|
||||||
|
|
||||||
CC?=cc
|
CC ?= cc
|
||||||
RUSTC?=rustc
|
RUSTC ?= rustc
|
||||||
RUSTLIBS=--extern getopt=build/o/libgetopt.rlib \
|
RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \
|
||||||
--extern sysexits=build/o/libsysexits.rlib \
|
--extern sysexits=build/o/libsysexits.rlib \
|
||||||
--extern strerror=build/o/libstrerror.rlib
|
--extern strerror=build/o/libstrerror.rlib
|
||||||
CFLAGS+=-I$(SYSEXITS)
|
CFLAGS += -I$(SYSEXITS)
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: dj false fop hru intcmp rpn scrut str strcmp true
|
all: dj false fop hru intcmp rpn scrut str strcmp true
|
||||||
@ -36,12 +36,12 @@ build:
|
|||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf build/ dist/
|
rm -rf build dist
|
||||||
|
|
||||||
dist: all
|
dist: all
|
||||||
mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1
|
mkdir -p $(DESTDIR)/$(PREFIX)/bin $(DESTDIR)/$(PREFIX)/share/man/man1
|
||||||
cp build/bin/* $(DESTDIR)$(PREFIX)/bin/
|
cp build/bin/* $(DESTDIR)/$(PREFIX)/bin
|
||||||
cp docs/*.1 $(DESTDIR)$(PREFIX)/share/man/man1/
|
cp docs/*.1 $(DESTDIR)/$(PREFIX)/share/man/man1
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: dist
|
install: dist
|
||||||
|
Loading…
Reference in New Issue
Block a user