From 95152ddccb041c54af9f384ae65489609540d101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sun, 26 Sep 2010 00:53:38 +0200 Subject: [PATCH] =?UTF-8?q?Makefile=20avec=20la=20biblioth=C3=A8que=20SDL.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..09234f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CC=gcc +CFLAGS= +LD=gcc +LDFLAGS=-lSDL +# -lSDL_mixer + +EXEC=lew +SOURCES=main.c +OBJECTS=$(SOURCES:.c=.o) + +$(EXEC): $(OBJECTS) + $(LD) $(LDFLAGS) $< -o $@ + +.o: + $(CC) $(CFLAGS) $< -o $@