-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
228 lines (174 loc) · 6.62 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
########################################################################
# AtariSIO Makefile
# (c) 2002-2009 by Matthias Reichl <[email protected]>
# http://www.horus.com/~hias/atari/
########################################################################
########################################################################
# use kernel build system (comment out if you use kernel 2.2/2.4)
########################################################################
USE_KBUILD = 1
########################################################################
# location of your kernel source (header) files
########################################################################
KDIR = /lib/modules/$(shell uname -r)/build
#KDIR = /usr/src/linux
#KDIR = /data/hias/laptop/linux-2.2.19
########################################################################
# installation directory for the kernel module atarisio.o/atarisio.ko
# (lib/modules/$KERNELVERSION/misc)
# please note: some RedHat versions ship with a nonstandard version.h
# file which causes grep to fail in getting the version information.
# In this case, uncomment either the 'uname' line below or set the
# version directory by hand.
########################################################################
VERSION = $(shell ./getver.sh "${KDIR}")
#VERSION = $(shell uname -r)
#VERSION = 2.4.25
MDIR = /lib/modules/$(VERSION)/misc
########################################################################
# installation directory
# The executables will be installed in INST_DIR/bin,
# the header file atarisio.h will be installed in INST_DIR/include,
########################################################################
INST_DIR = /usr/local
#INST_DIR = /usr/local/atarisio
#INST_DIR = /opt/hias
########################################################################
# Default device for atariserver/atarixfer
########################################################################
#DEFAULT_DEVICE = /dev/atarisio0
########################################################################
# set compile and link options for using the ncurses library
# the wrapper script uses "ncurses5-config" if available
########################################################################
NCURSES_CFLAGS ?= $(shell ./getcurses.sh --cflags)
NCURSES_LDFLAGS ?= $(shell ./getcurses.sh --libs)
########################################################################
# if you don't have zlib installed on your system, please comment out
# the following two lines. With zlib enabled you will be able to
# directly load and save gzip-compressed image files (eg file.atr.gz)
########################################################################
ZLIB_CFLAGS=-DUSE_ZLIB
ZLIB_LDFLAGS=-lz
########################################################################
# all in one:
# link all programs together into a single executable (like busybox)
########################################################################
#ALL_IN_ONE=1
########################################################################
# gcc version for compiling the user space apps
# Usually you don't need to change this
########################################################################
CC ?= gcc
CXX ?= g++
STRIP ?= strip
#CC = gcc-3.3
#CXX = g++-3.3
#CC = /usr/local/gcc-3.2.2/bin/gcc
#CXX = /usr/local/gcc-3.2.2/bin/g++
########################################################################
# gcc version to use for compiling the kernel module
# The (major) version number must match the version that was used
# when compiling the linux kernel, otherwise your system may crash!
# To find out which gcc version was used to compile the kernel
# just do a "cat /proc/version"
########################################################################
KERNEL_CC ?= $(CC)
#KERNEL_CC = gcc
#KERNEL_CC = gcc-2.95
#KERNEL_CC = kgcc
########################################################################
# ATP support:
# if you want ATP support, uncomment out the following line
########################################################################
#ENABLE_ATP=1
########################################################################
# Use SYS_sched_XXX syscalls instead of libc functions
# Enable this if you are using musl libc to work around it's broken
# sched_XXX libc implementations which just return ENOSYS
########################################################################
#SCHED_SYSCALLS=1
########################################################################
# don't change anything below here
########################################################################
MODFLAGS = -Wstrict-prototypes -Wall -O2 -DMODULE -D__KERNEL__ -I$(KERNEL_INCLUDES)
CFLAGS = -g -W -Wall -DATARISIO_DEBUG
#CFLAGS = -O3 -W -Wall
CXXFLAGS = $(CFLAGS)
LDFLAGS = -g
#LDFLAGS = -g -static
export KERNEL_CC MODFLAGS KDIR MDIR USE_KBUILD
export CC CXX CFLAGS CXXFLAGS LDFLAGS STRIP
export INST_DIR DEFAULT_DEVICE SCHED_SYSCALLS
export ENABLE_ATP ALL_IN_ONE
export ZLIB_CFLAGS ZLIB_LDFLAGS
export NCURSES_CFLAGS NCURSES_LDFLAGS
export ENABLE_TESTS
.PHONY: all
all: driver tools
.PHONY: driver
driver:
$(MAKE) -C driver
.PHONY: tools
tools:
$(MAKE) -C tools
.PHONY: clean
clean: driver-clean tools-clean
.PHONY: driver-clean
driver-clean:
$(MAKE) -C driver clean
.PHONY: tools-clean
tools-clean:
$(MAKE) -C tools clean
.PHONY: win32
win32:
$(MAKE) -C tools -f Makefile.win32
.PHONY: posix
posix:
$(MAKE) -C tools -f Makefile.posix
.PHONY: allclean
allclean:
$(MAKE) -C driver allclean
$(MAKE) -C tools allclean
.PHONY: backup
backup:
tar zcf bak/SIO-`date '+%y%m%d-%H%M'`.tgz \
driver/*.c driver/*.h driver/Makefile \
tools/*.h tools/*.cpp tools/Makefile tools/.depend \
tools/6502/Makefile tools/6502/*.c tools/6502/*.h \
tools/6502/*.src tools/6502/*.inc tools/6502/*.bin \
windll/Makefile windll/libatarisio.cpp windll/libatarisio.h \
windll/buildlib.bat windll/aconv.c \
Makefile atarisio-ttyS* Changelog README* INSTALL* LICENSE getver.sh
.PHONY: install
install: driver-install tools-install
.PHONY: driver-install
driver-install:
$(MAKE) -C driver install
.PHONY: tools-install
tools-install:
$(MAKE) -C tools install
.PHONY: dtbo-install
dtbo-install:
cp contrib/rpi/*.dtbo /boot/overlays
.PHONY: rpi-install
rpi-install: tools-install dtbo-install
.PHONY: devices
devices:
mknod -m 660 /dev/atarisio0 c 10 240
mknod -m 660 /dev/atarisio1 c 10 241
mknod -m 660 /dev/atarisio2 c 10 242
mknod -m 660 /dev/atarisio3 c 10 243
.PHONY: uninstall
uninstall:
$(MAKE) -C driver uninstall
$(MAKE) -C tools uninstall
rm -f /dev/atarisio*
.PHONY: dep
dep: driver-dep tools-dep
.PHONY: driver-dep
driver-dep:
$(MAKE) -C driver dep
.PHONY: tools-dep
tools-dep:
$(MAKE) -C tools dep