]> icculus.org git repositories - crow/jumpnbump.git/blob - sdl/Makefile
Added AI by Ricardo Cruz. This also adds mouse controls.
[crow/jumpnbump.git] / sdl / Makefile
1 SDL_CFLAGS = `sdl-config --cflags`
2 CFLAGS = -Wall -ansi -pedantic -O2 -ffast-math -funroll-loops \
3         -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DNDEBUG \
4         -I. -I.. $(SDL_CFLAGS) -DUSE_SDL -DUSE_NET
5
6 OBJS = gfx.o interrpt.o sound.o input.o
7 TARGET = ../sdl.a
8
9 all: $(TARGET)
10
11 $(TARGET): $(OBJS)
12         ar cru $(TARGET) $(OBJS)
13         ranlib $(TARGET)
14
15 clean:
16         rm -f $(TARGET) $(OBJS)