fpkg/Makefile

19 lines
411 B
Makefile
Raw Normal View History

2018-09-14 23:20:13 +00:00
DESTDIR ?=
PREFIX ?=/usr
exec_prefix ?= $(PREFIX)
bindir ?= $(exec_prefix)/bin
BINDIR ?= $(bindir)
all: help
help:
@echo No build necessary. Use \"make install\" to install fpkg
install:
install -d -m 755 $(DESTDIR)$(BINDIR)
install -m 755 src/cpkg $(DESTDIR)$(BINDIR)
2018-09-15 08:36:47 +00:00
install -m 755 src/qpkg $(DESTDIR)$(BINDIR)
2018-09-14 23:20:13 +00:00
install -m 755 src/ipkg $(DESTDIR)$(BINDIR)
install -m 755 src/rpkg $(DESTDIR)$(BINDIR)