Add Makefile and stubs.
This commit is contained in:
parent
3de3ebff56
commit
233133a135
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
17
Makefile
Normal file
17
Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
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)
|
||||
install -m 755 src/ipkg $(DESTDIR)$(BINDIR)
|
||||
install -m 755 src/rpkg $(DESTDIR)$(BINDIR)
|
Loading…
Reference in New Issue
Block a user