diff options
author | jonas <himself@jonasgunz.de> | 2019-01-29 14:54:51 +0100 |
---|---|---|
committer | jonas <himself@jonasgunz.de> | 2019-01-29 14:54:51 +0100 |
commit | da2b8fc6673076d3fc600d275f5e5c8e95b54cac (patch) | |
tree | 57d7c4fce66e16d5721938b337650672ed6e84bd /Makefile | |
parent | d83645d932a80a704d6bd396246bfcef086cc5af (diff) | |
download | termgl-da2b8fc6673076d3fc600d275f5e5c8e95b54cac.tar.gz |
Cleanup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ CC = /usr/bin/g++ -CFLAGS = -Wall -g -std=c++11 -Werror=missing-prototypes +CFLAGS = -Wall -g -std=c++11 LDFLAGS = OUTPUT = Engine BUILDDIR = build @@ -25,7 +25,7 @@ all: clean debug .PHONY: clean clean: - rm -df $(BUILDDIR)/$(OUTPUT) *.o version.h + rm -df $(BUILDDIR)/$(OUTPUT) $(OBJ) version.h run: debug ./$(BUILDDIR)/$(OUTPUT) |