1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-15 14:57:32 +02:00
wernermisc/neocon/Makefile

17 lines
205 B
Makefile
Raw Normal View History

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