summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorus_arch2016-09-09 12:34:11 +0200
committerhorus_arch2016-09-09 12:34:11 +0200
commit316e9ea0a1c6d23f1a69788747cbeb6d868749f5 (patch)
treef5d083ee071b40065aba8827a0a6456ddd098b0d
parent542b26d4dcc90f8186900d51960e3dfefaa0ad01 (diff)
downloaduhttpd-master.tar.gz
Removes clutter from Makefile.HEADmaster
-rw-r--r--Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 9454c8a..31e0661 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,9 @@
-LEX := flex
-LFLAGS :=
-CC := gcc
-CFLAGS := -Wall -pedantic
APP := uhttpd
-all: clean urlscanner.o scanner.go
- go build -o $(APP)
+all: clean build
-urlscanner.o: urlscanner.h
+build:
+ go build -o $(APP)
clean:
- $(RM) $(RMFLAGS) *.o $(APP) *.exe
+ $(RM) $(RMFLAGS) $(APP) *.exe