Added Makefile

master
Armando Rivera 11 years ago
parent 1c7d7f91c7
commit 555bed312f
  1. 9
      SDL2/pong/Makefile

@ -0,0 +1,9 @@
all:pong
CC = g++
LDFLAGS = $(shell sdl2-config --libs --cflags) -ldl
pong:
$(CC) $@.cpp $(LDFLAGS) -o $@
Loading…
Cancel
Save