summaryrefslogtreecommitdiff
path: root/Makefile
blob: c6abdc8dd95babf63043405d7e55ab1422b5eb0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
CC=gcc
STRIP=strip
WARN=-Wall -W -ansi -pedantic
CFLAGS=-Os -march=pentium3 -fomit-frame-pointer -pipe ${WARN}
LDFLAGS=-Wl,-O1,-s
INCLUDES=`sdl-config --cflags`
LIBRARIES=`sdl-config --libs` -lSDL_ttf -lSDL_image
EXT=.exe

EXE=pong${EXT}

OBJS=pong.o color.o text.o ball.o paddle.o
	
all: ${OBJS}
	${CC} ${LDFLAGS} ${OBJS} -o ${EXE} ${LIBRARIES}

clean:
	rm -f ${OBJS}
	rm -f ${EXE}

rebuild: clean all
remake: rebuild

%.o: %.c
	${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<