Add Makefile and stubs.

This commit is contained in:
Faerbit 2018-09-15 01:20:13 +02:00
parent 3de3ebff56
commit 233133a135
5 changed files with 30 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

17
Makefile Normal file
View 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)

4
src/cpkg Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
echo "Not yet implemented"
exit 1

4
src/ipkg Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
echo "Not yet implemented"
exit 1

4
src/rpkg Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
echo "Not yet implemented"
exit 1