forked from retrofw/dingux-vectrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile-caanoo
61 lines (48 loc) · 1.92 KB
/
Makefile-caanoo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# Copyright (C) 2006 Ludovic Jacomme (ludovic.jacomme@gmail.com)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
VECTREX_VERSION = 1.1.1
TARGET = vectrex.gpe
SDL_CONFIG = $(CAANOOGPH)/bin/sdl-config
OBJS = gp2x_psp.o cpucaanoo.o \
e6809.o e8910.o osint.o vecx.o \
global.o psp_main.o \
psp_sdl.o psp_kbd.o psp_dve.o psp_fmgr.o psp_font.o \
psp_danzeff.o psp_menu_set.o \
psp_menu.o psp_menu_kbd.o psp_menu_help.o
CC=arm-gph-linux-gnueabi-gcc
CXX=arm-gph-linux-gnueabi-g++
STRIP=arm-gph-linux-gnueabi-strip
DEFAULT_CFLAGS = $(shell $(SDL_CONFIG) --cflags)
MORE_CFLAGS = -I. -I$(CAANOODEV)/include \
-DNO_STDIO_REDIRECT -DVECTREX_VERSION=\"$(VECTREX_VERSION)\" \
-DCAANOO_MODE -DSOUND_SUPPORT
CFLAGS = $(DEFAULT_CFLAGS) $(MORE_CFLAGS) -O2 -Wall -fomit-frame-pointer -ffast-math -fsigned-char
# -funroll-loops -ffast-math -fomit-frame-pointer -fno-strength-reduce -finline-functions -fsigned-char
LIBS += -Wl,-rpath,$(OPENCAANOO)/lib -L$(CAANOODEV)/lib -lSDL_image -lSDL -lpng -lz -lm -lpthread
.c.o:
$(CC) $(CFLAGS) -c $< -o $@
.cpp.o:
$(CXX) $(CFLAGS) -c $< -o $@
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) $(LIBS) -o $(TARGET) && $(STRIP) $(TARGET)
install: $(TARGET)
cp $< /media/usbdisk/game/caanoo-vectrex/
clean:
rm -f $(OBJS) $(TARGET)
ctags:
ctags *[ch]