aboutsummaryrefslogtreecommitdiff
path: root/test/sdl2/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-02-24 15:10:45 +0100
committerlonkaars <loek@pipeframe.xyz>2023-02-24 15:10:45 +0100
commit672982618cb3ea63f0305785d7c499c83ece145b (patch)
tree0a4e3125d2fc95c3791653c512d8d0ae9bf5a875 /test/sdl2/makefile
parent36c04e7b000035086b2e2b8020a2337c5c2fa390 (diff)
mv sdl2 demo to src/ppusim folder
Diffstat (limited to 'test/sdl2/makefile')
-rw-r--r--test/sdl2/makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/sdl2/makefile b/test/sdl2/makefile
deleted file mode 100644
index 4c26dc3..0000000
--- a/test/sdl2/makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-CC = gcc
-LD = gcc
-RM = rm -f
-TARGET = main
-LFLAGS += -lSDL2 -lm
-OBJS += main.o
-
-all: $(TARGET)
-
-%.o: %.c
- $(CC) -c $(CFLAGS) $< -o $@
-
-$(TARGET): $(OBJS)
- $(LD) $^ $(LFLAGS) -o $@
-
-clean:
- $(RM) $(TARGET) $(OBJS)
-