Systemd/Makefile
Zbigniew Jędrzejewski-Szmek e7e157032b build-sys: add basic support for ./configure && make && make install
This adds the basic make support required by
https://github.com/cgwalters/build-api. CFLAGS, CXXFLAGS, DESTDIR variables are
supported:
   ./configure CFLAGS=... CXXFLAGS=... && make && make install DESTDIR=
2017-07-18 10:05:06 -04:00

6 lines
66 B
Makefile

all:
ninja -C build
install:
DESTDIR=$(DESTDIR) ninja -C build