-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
85 lines (70 loc) · 2.33 KB
/
Makefile
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Comment/uncomment these to choose an installation destination
# System wide installation
#PREFIX?=/usr/local
#BINDIR?=$(PREFIX)/bin
#DOCDIR?=$(PREFIX)/share/doc/$(TARGET)
#PACKAGE_DATA_DIR?=$(PREFIX)/share/$(TARGET)
# Local installation within your home folder
#PREFIX?=$(HOME)/Games/$(TARGET)
#BINDIR?=$(PREFIX)
#DOCDIR?=$(PREFIX)/doc
#PACKAGE_DATA_DIR?=$(PREFIX)/data
# Run from current folder i.e. no installation
PREFIX?=.
BINDIR?=$(PREFIX)
DOCDIR?=$(PREFIX)
#PACKAGE_DATA_DIR?=$(PREFIX)/data
PACKAGE_DATA_DIR?=/home/salva/src/sz81/data
# For sz81 OSS_SOUND_SUPPORT is now synonymous with SDL_SOUND_SUPPORT.
# Comment this out if you don't want sound support.
SOUNDDEF=-DOSS_SOUND_SUPPORT
# You won't need to alter these
TARGET=$(shell cat TARGET)
SOURCES=sdl_main.c common.c sound.c z80.c w5100.c sdl_engine.c sdl_hotspots.c \
sdl_input.c sdl_loadsave.c sdl_resources.c sdl_sound.c sdl_video.c
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
VERSION=$(shell cat VERSION)
# These should be ok for most.
# For debugging/profiling uncomment the following two lines:
#CFLAGS=-O0 -g -pg
#LDFLAGS=-pg
SDL_CONFIG?=sdl-config
CFLAGS?=-O3 -g
CFLAGS+=-Wall -Wno-unused-result `$(SDL_CONFIG) --cflags` -DVERSION=\"$(VERSION)\" -DENABLE_EMULATION_SPEED_ADJUST \
-DPACKAGE_DATA_DIR=\"$(PACKAGE_DATA_DIR)\" $(SOUNDDEF) -DSZ81
LINK=$(CC)
LDFLAGS=
LIBS=`$(SDL_CONFIG) --libs`
# You won't need to alter anything below
all: $(SOURCES) $(TARGET)
$(TARGET): $(OBJECTS)
$(LINK) $(LDFLAGS) $(OBJECTS) $(LIBS) -o $@
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
.PHONY: all clean install
open%:
-@if [ -n "`which pasmo 2> /dev/null`" ]; then \
pasmo -v open8x/$@.asm open8x/$@.rom; \
if [ -f open8x/$@.rom -a ! -e data/zx$*.rom ]; then \
cp open8x/$@.rom data/zx$*.rom; \
fi \
else \
echo "The Pasmo cross-assembler was not found: skipping $@"; \
fi
clean:
rm -f *.o *~ sz81
install:
@if [ "$(PREFIX)" = . ] ; then \
echo "Installing into the current folder is not allowed."; \
exit 2; \
fi
mkdir -p $(BINDIR)
mkdir -p $(DOCDIR)
mkdir -p $(PACKAGE_DATA_DIR)
cp $(TARGET) $(BINDIR)
cp AUTHORS COPYING ChangeLog NEWS README $(DOCDIR)
cp data/*.bmp $(PACKAGE_DATA_DIR)
@if [ -f data/zx80.rom ]; then cp data/zx80.rom $(PACKAGE_DATA_DIR); fi
@if [ -f data/zx81.rom ]; then cp data/zx81.rom $(PACKAGE_DATA_DIR); fi
uninstall:
@echo "Uninstalling is not currently implemented."