diff options
| -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 |
