mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
26 lines
449 B
Makefile
26 lines
449 B
Makefile
PROGRAM=\
|
|
porttix-create \
|
|
srctix-create \
|
|
tix \
|
|
tix-build \
|
|
tix-collection \
|
|
tix-execdiff \
|
|
tix-execpatch \
|
|
tix-install \
|
|
tix-rmpatch \
|
|
|
|
.include <sortix/sys.mk>
|
|
.include <template/dependencies.mk>
|
|
.include <template/program.mk>
|
|
|
|
# TODO: HACK
|
|
.ifndef HOST_IS_SORTIX
|
|
CPPFLAGS+=-D_GNU_SOURCE
|
|
.endif
|
|
|
|
.PHONY: install install-bin-extra
|
|
|
|
install: install-bin-extra
|
|
|
|
install-bin-extra: install-bin
|
|
install tix-eradicate-libtool-la $(DESTDIR)$(BINDIR)
|