disable the unrecognized nls and x flags
[AROS-Contrib.git] / Games / XInvaders3D / Makefile.dos
blob0ab2e4b68b8dc19222bc3070761159acd8846c1e
1 all: game
3 CC = gcc
4 LIBS  = -lalleg -lm
5 OBJS = game.o aliens.o player.o effects.o \
6 object.o camera.o main-dos.o vec4x1.o mat4x4.o
7 DEPENDS = 
8 #CFLAGS = -pg -Wall -pedantic -ansi
9 #CFLAGS = -ansi
10 #OPTIONS = -D_GNU_SOURCE -DGAME_LINUX_X11 -DGAME_DEBUG
11 OPTIONS= -DGAME_LINUX_X11
13 .c.o: $(DEPENDS)
14         $(CC) -c $(CFLAGS) $(OPTIONS) $< -o $@
16 game: $(OBJS) $(DEPENDS)
17         $(CC) -o xinv3d $(OBJS) $(LIBS) $(OPTIONS)
19 clean:
20         del *.o
21         del xinv3d.exe
23 aliens.o: aliens.c game.h vec4x1.h mat4x4.h camera.h system.h defines.h \
24  object.h externs.h
25 camera.o: camera.c mat4x4.h vec4x1.h camera.h
26 effects.o: effects.c game.h vec4x1.h mat4x4.h camera.h system.h \
27  defines.h object.h externs.h
28 game.o: game.c game.h vec4x1.h mat4x4.h camera.h system.h defines.h \
29  object.h externs.h
30 object.o: object.c mat4x4.h vec4x1.h defines.h object.h
31 main-dos.o: main-dos.c game.h vec4x1.h mat4x4.h camera.h system.h \
32  defines.h object.h externs.h
33 mat4x4.o: mat4x4.c mat4x4.h vec4x1.h
34 player.o: player.c game.h vec4x1.h mat4x4.h camera.h system.h defines.h \
35  object.h externs.h
36 vec4x1.o: vec4x1.c vec4x1.h