summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 2648c43..0000000
--- a/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-.SUFFIXES =
-.SUFFIXES = .c .h .o
-
-CC = gcc
-CFLAGS = -Wall -Wextra -Werror -g
-
-SRCS = src/main.c src/init.c src/logging.c \
- src/base64.c src/compression.c \
- src/tmx.c src/resources/resource.c src/resources/image.c
-OBJS = $(SRCS:.c=.o)
-LIBS = sdl SDL_image zlib expat
-
-all: sdlex
-
-sdlex: $(OBJS)
- $(CC) $(LDFLAGS) -o sdlex $$(pkg-config --libs $(LIBS)) $(OBJS)
-
-.c.o:
- $(CC) -c $(CFLAGS) -o $*.o $$(pkg-config --cflags $(LIBS)) $<
-
-clean:
- rm -f $(OBJS) sdlex