mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 15:35:19 +02:00
17 lines
205 B
Makefile
17 lines
205 B
Makefile
|
PREFIX=/usr/local
|
||
|
|
||
|
CFLAGS=-Wall -g
|
||
|
|
||
|
.PHONY: all clean install uninstall
|
||
|
|
||
|
all: neocon
|
||
|
|
||
|
clean:
|
||
|
rm -f neocon
|
||
|
|
||
|
install: neocon
|
||
|
install -m 555 neocon $(PREFIX)/bin
|
||
|
|
||
|
uninstall:
|
||
|
rm -f $(PREFIX)/bin/neocon
|