]> Shamusworld >> Repos - thunder/blob - makefile
Small refactoring to sprite draw code in anticipation of major refactoring
[thunder] / makefile
1 #
2 # Makefile for Thunder SDL
3 #
4 # by James L. Hammons
5 # (C) 2009 Underground Software
6 # This software is licensed under the GPL v3 or later
7 #
8
9 ifeq "$(OSTYPE)" "msys"                                                 # Win32
10
11 SYSTYPE    = __GCCWIN32__
12 EXESUFFIX  = .exe
13 GLLIB      = -lopengl32
14 ICON       = obj/icon.o
15 SDLLIBTYPE = --libs
16 MSG        = Win32 on MinGW
17
18 else
19 #ifeq "$(OSTYPE)" "darwin"
20 ifeq "darwin" "$(findstring darwin,$(OSTYPE))"  # Should catch both 'darwin' and 'darwin7.0'
21
22 SYSTYPE    = __GCCUNIX__ -D_OSX_
23 EXESUFFIX  =
24 GLLIB      =
25 ICON       =
26 SDLLIBTYPE = --static-libs
27 MSG        = Mac OS X
28
29 else                                                                                    # *nix
30
31 SYSTYPE    = __GCCUNIX__
32 EXESUFFIX  =
33 GLLIB      = -lGL
34 ICON       =
35 SDLLIBTYPE = --libs
36 MSG        = generic Unix/Linux
37
38 endif
39 endif
40
41 CC         = gcc
42 LD         = gcc
43 TARGET     = thunder
44
45 CFLAGS   = -MMD -Wall -Wno-switch -Wno-uninitialized -Wno-unused -O2 -D$(SYSTYPE) -fomit-frame-pointer `sdl-config --cflags`
46 CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -Wno-uninitialized -Wno-unused -O2 -D$(SYSTYPE) \
47                 -fomit-frame-pointer `sdl-config --cflags` \
48                 -g
49 #               -DLOG_UNMAPPED_MEMORY_ACCESSES
50
51 LDFLAGS =
52
53 # Ugh, let's get rid of the ref to -lcurses
54 LIBS = -L/usr/local/lib `sdl-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB) -lcurses
55
56 INCS = -I. -Isrc -I/usr/local/include
57
58 OBJS = \
59         obj/dis6808.o  \
60         obj/dis6809.o  \
61         obj/gui.o      \
62         obj/log.o      \
63         obj/resource.o \
64         obj/screen.o   \
65         obj/v6808.o    \
66         obj/v6809.o    \
67         obj/thunder.o  \
68         $(ICON)
69
70 all: checkenv message obj $(TARGET)$(EXESUFFIX)
71         @echo
72         @echo -e "\033[01;33m***\033[00;32m Looks like it compiled OK... Give it a whirl!\033[00m"
73
74 # Check the compilation environment, barf if not appropriate
75
76 checkenv:
77         @echo
78         @echo -en "\033[01;33m***\033[00;32m Checking compilation environment... \033[00m"
79 ifeq "" "$(shell which sdl-config)"
80         @echo
81         @echo
82         @echo -e "\033[01;33mIt seems that you don't have the SDL development libraries installed.
83         @echo -e "have installed them, make sure that the sdl-config file is somewhere in your"
84         @echo -e "path and is executable.\033[00m"
85         @echo
86 #Is there a better way to break out of the makefile?
87         @break
88 else
89         @echo -e "\033[01;37mOK\033[00m"
90 endif
91
92 message:
93         @echo
94         @echo -e "\033[01;33m***\033[00;32m Building Thunder/SDL for $(MSG)...\033[00m"
95         @echo
96
97 clean:
98         @echo -en "\033[01;33m***\033[00;32m Cleaning out the garbage...\033[00m"
99         @rm -rf obj
100         @rm -f ./$(TARGET)$(EXESUFFIX)
101         @echo -e "\033[01;37mdone!\033[00m"
102
103 obj:
104         @mkdir obj
105
106 # This is only done for Win32 at the moment...
107
108 ifneq "" "$(ICON)"
109 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
110         @echo -e "\033[01;33m***\033[00;32m Processing icon...\033[00m"
111         @windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
112 endif
113
114 obj/%.o: src/%.c
115         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
116         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
117
118 obj/%.o: src/%.cpp
119         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
120         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
121
122 obj/%.o: src/%.asm
123         nasm -f elf32 -I ./res/ $< -o $@
124 # *** sigh *** yet another variable... !!! FIX !!!
125 #       nasm -f coff $< -o $@
126
127 $(TARGET)$(EXESUFFIX): $(OBJS)
128         @echo -e "\033[01;33m***\033[00;32m Linking it all together...\033[00m"
129         @$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
130 #       strip --strip-all $(TARGET)$(EXESUFFIX)
131 #       upx -9 $(TARGET)$(EXESUFFIX)
132
133 # Pull in dependencies autogenerated by gcc's -MMD switch
134 # The "-" in front in there just in case they haven't been created yet
135
136 -include obj/*.d