truckle/Makefile

17 lines
488 B
Makefile
Raw Normal View History

2013-02-15 21:33:55 +01:00
#!/bin/sh
# vi:set filetype=makefile
NULL=0 exec make "CALL=$0" "EXE=`which $0`" -f "`which $0`" -- "$@"
D := /
PREFIX := /usr/local
BIN_PREFIX := $(PREFIX)/bin
all: truckle
@echo 'Nothing to do :)'
2013-02-15 21:33:55 +01:00
@echo 'Please run "make install" to install.'
install: truckle
install -m 0755 truckle $(D)$(BIN_PREFIX)/truckle
for c in `./truckle --list-commands`; do ln -fs truckle $(D)$(BIN_PREFIX)/truckle-$${c} ; done
2013-02-15 21:33:55 +01:00
for c in trdo tresume; do ln -fs truckle $(D)$(BIN_PREFIX)/$${c} ; done