[All of these changes were wrought on the Dell.]
[xuni.git] / Makewin
blob4033c8b45283be1a88a3f83bc8a293964bb4a844
1 # Makefile for xuni, Windows version
3 SDLLIBPATH = lib
4 SDLINCPATH = include
6 CC = gcc
7 CFLAGS = -W -Wall -ansi -pedantic -g -I$(SDLINCPATH)
8 CLINK = -lm -lSDL.dll -lSDL -lSDL_image -lSDL_gfx -lSDL_ttf
10 OBJ = game.o graphics.o loop.o menu.o options.o settings.o xuni.o
11 TARGET = xuni.exe
12 ARGS =
14 # Default target: all
15 all: $(TARGET)
17 # Executable files
18 #$(CC) $(CFLAGS) -o $(TARGET) $(OBJ) $(CLINK)
19 $(TARGET): $(OBJ)
20         $(CC) -L$(SDLLIBPATH) -o $(TARGET) *.o -lSDL_gfx -lSDLmain -lSDL.dll -lSDL -lSDL_image -lSDL_ttf
22 # Source files
23 game.o: game.c game.h graphics.h loop.h menu.h xuni.h
24 graphics.o: graphics.c graphics.h settings.h xuni.h
25 loop.o: loop.c game.h graphics.h loop.h menu.h options.h xuni.h
26 menu.o: menu.c graphics.h loop.h menu.h xuni.h
27 options.o: options.c options.h graphics.h loop.h menu.h xuni.h
28 settings.o: settings.c graphics.h settings.h xuni.h
29 xuni.o: xuni.c graphics.h loop.h menu.h settings.h xuni.h
31 # Other targets
32 run: $(TARGET)
33         ./$(TARGET)
34 runa: $(TARGET)
35         ./$(TARGET) `line`
36 debug: $(TARGET)
37         gdb ./$(TARGET)
38 clean:
39         -rm $(TARGET) $(OBJ)