diff options
| author | horus_arch | 2016-09-09 12:34:11 +0200 |
|---|---|---|
| committer | horus_arch | 2016-09-09 12:34:11 +0200 |
| commit | 316e9ea0a1c6d23f1a69788747cbeb6d868749f5 (patch) | |
| tree | f5d083ee071b40065aba8827a0a6456ddd098b0d | |
| parent | 542b26d4dcc90f8186900d51960e3dfefaa0ad01 (diff) | |
| download | uhttpd-316e9ea0a1c6d23f1a69788747cbeb6d868749f5.tar.gz | |
| -rw-r--r-- | Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -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 |
