Files
matchbox/Makefile
Dalton Hubble a6113b5042 *: Use platform agnostic Makefile, stop creating empty env file
* systemd users can use /etc/bootcfg.env if they choose to
use environment files
2016-05-27 14:34:22 -07:00

26 lines
405 B
Makefile

BIN_DIR=/usr/local/bin
all: build
build:
./build
test:
./test
install:
cp bin/bootcfg $(BIN_DIR)
cp bin/bootcmd $(BIN_DIR)
@echo "**************"
@echo "INSTALL SUCCESS"
@echo "**************"
@echo "bootcfg was installed to /usr/local/bin/bootcfg"
@echo "bootcmd was installed to /usr/local/bin/bootcmd"
uninstall:
rm $(BIN_DIR)/bootcfg
rm $(BIN_DIR)/bootcmd
.PHONY: build test install