aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-02-13 14:20:34 +0100
committerMateja <mail@matejamaric.com>2021-02-13 14:20:34 +0100
commit2c60e8825c56861cac639e79e5cb74108b947617 (patch)
tree2713b20c7b5941c310e8d9557e24746c7bf9b42a /Makefile
parenta36a47f018e2a214f0392bb5cf52edefeb5891c2 (diff)
downloaderender-2c60e8825c56861cac639e79e5cb74108b947617.tar.gz
erender-2c60e8825c56861cac639e79e5cb74108b947617.zip
Use CMake.
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)