|
|
@ -9,7 +9,7 @@ endif |
|
|
|
|
|
|
|
build_and_run: clean build run |
|
|
|
|
|
|
|
.PHONY : build_and_run build run clean testfile |
|
|
|
.PHONY : build_and_run build run clean testfile install |
|
|
|
|
|
|
|
build : |
|
|
|
@echo "-> Building" |
|
|
@ -17,6 +17,10 @@ build : |
|
|
|
@go build . |
|
|
|
@echo "-> Done" |
|
|
|
|
|
|
|
build_silent : |
|
|
|
@cd utils/; go build .; cd .. |
|
|
|
@go build . |
|
|
|
|
|
|
|
run : |
|
|
|
@echo "-> Running" |
|
|
|
@./led $(FILE) |
|
|
@ -25,6 +29,12 @@ clean : |
|
|
|
@echo "-> Cleaning up" |
|
|
|
@-rm led |
|
|
|
|
|
|
|
install : build_silent |
|
|
|
@echo "WOW, you're either brave or very stupid..." |
|
|
|
@echo "-> Installing led in /usr/local/bin/led" |
|
|
|
@ln -sF $(shell pwd)/led /usr/local/bin/led |
|
|
|
@echo "-> Done" |
|
|
|
|
|
|
|
testfile : |
|
|
|
@echo -e "-> Generating test file" |
|
|
|
@echo -e "This is a line.\nThis is another line.\n\n\nThis is the end." > tmp.txt |
|
|
|