diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,6 +1,16 @@ # makefile for uirc +# to configure install locations and compiler settings, see config.mk +include config.mk + SRC = uirc.c uirc: ${SRC} - gcc -o uirc -O ${SRC} + ${CC} -o uirc -O ${SRC} + +install: uirc + mkdir -p ${PREFIX}/bin + cp -f uirc ${PREFIX}/bin + chmod 755 ${PREFIX}/bin/uirc + +.PHONY: uirc install |