aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a1bd513..0000000
--- a/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-NAME=erender
-CXXFLAGS=-g -Wall
-LIBS=-lsfml-graphics -lsfml-window -lsfml-system
-CXX=g++
-
-build: src/*
- $(CXX) $(CXXFLAGS) src/* -o $(NAME) $(LIBS)
-
-run: $(NAME)
- ./$(NAME)