]> Shamusworld >> Repos - thunder/blob - makefile
9c3d85ec4efb670b3e105fcd747c8cb53e90079f
[thunder] / makefile
1 #
2 # Makefile for Thunder SDL
3 #
4 # by James 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 `sdl2-config --cflags`
46 CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -Wno-uninitialized -Wno-unused -O2 -D$(SYSTYPE) \
47                 -fomit-frame-pointer `sdl2-config --cflags` \
48                 -g
49 #               -DLOG_UNMAPPED_MEMORY_ACCESSES
50
51 LDFLAGS =
52
53 # Ugh, let's get rid of the ref to -lcurses [DONE]
54 LIBS = `sdl2-config $(SDLLIBTYPE)` -lstdc++ -lz -lm $(GLLIB)
55
56 INCS = -I. -Isrc
57
58 OBJS = \
59         obj/dis63701.o   \
60         obj/dis6809.o    \
61         obj/gui.o        \
62         obj/icon-64x64.o \
63         obj/log.o        \
64         obj/psg.o        \
65         obj/resource.o   \
66         obj/screen.o     \
67         obj/sound.o      \
68         obj/v63701.o     \
69         obj/v6809.o      \
70         obj/video.o      \
71         obj/ym2151.o     \
72         obj/thunder.o    \
73         $(ICON)
74
75 all: checkenv message obj $(TARGET)$(EXESUFFIX)
76         @echo
77         @echo -e "\033[01;33m***\033[00;32m Looks like it compiled OK... Give it a whirl!\033[00m"
78
79 # Check the compilation environment, barf if not appropriate
80
81 checkenv:
82         @echo
83         @echo -en "\033[01;33m***\033[00;32m Checking compilation environment... \033[00m"
84 ifeq "" "$(shell which sdl2-config)"
85         @echo
86         @echo
87         @echo -e "\033[01;33mIt seems that you don't have the SDL development libraries installed.
88         @echo -e "have installed them, make sure that the sdl-config file is somewhere in your"
89         @echo -e "path and is executable.\033[00m"
90         @echo
91 #Is there a better way to break out of the makefile?
92         @break
93 else
94         @echo -e "\033[01;37mOK\033[00m"
95 endif
96
97 message:
98         @echo
99         @echo -e "\033[01;33m***\033[00;32m Building Thunder/SDL for $(MSG)...\033[00m"
100         @echo
101
102 clean:
103         @echo -en "\033[01;33m***\033[00;32m Cleaning out the garbage...\033[00m"
104         @rm -rf obj
105         @rm -f ./$(TARGET)$(EXESUFFIX)
106         @echo -e "\033[01;37mdone!\033[00m"
107
108 obj:
109         @mkdir obj
110
111 # This is only done for Win32 at the moment...
112
113 ifneq "" "$(ICON)"
114 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
115         @echo -e "\033[01;33m***\033[00;32m Processing icon...\033[00m"
116         @windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
117 endif
118
119 obj/%.o: src/%.c
120         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
121         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
122
123 obj/%.o: src/%.cpp
124         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
125         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
126
127 obj/%.o: src/%.asm
128         @echo -e "\033[01;33m***\033[00;32m Assembling $<...\033[00m"
129         @nasm -f elf64 -I ./res/ $< -o $@
130
131 $(TARGET)$(EXESUFFIX): $(OBJS)
132         @echo -e "\033[01;33m***\033[00;32m Linking it all together...\033[00m"
133         @$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
134 #       strip --strip-all $(TARGET)$(EXESUFFIX)
135 #       upx -9 $(TARGET)$(EXESUFFIX)
136
137 # Pull in dependencies autogenerated by gcc's -MMD switch
138 # The "-" in front in there just in case they haven't been created yet
139
140 -include obj/*.d