-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
47 lines (39 loc) · 1.14 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
###############################################################################
#
# makefile for vbcc or gcc
#
# original author: Henryk Richter <[email protected]>
#
# concept:
#
# tools required:
# - vbcc, defaulting to m68k-amigaos
# - vlink
# (- vasm)
#
# porting:
#
# see Common.mk
#
###############################################################################
###############################################################################
# Date, version, extra objects to build
#
###############################################################################
DEVICEVERSION=1
DEVICEREVISION=1
DEVICEDATE=2024-02-24
###############################################################################
# Devices to build (1 or 2, keep DEVICEID2 empty if only one build is desired)
#
###############################################################################
DEVICEID=scsidayna.device
DEFINES = #
ASMDEFS = #
CPU = 68000
DEVICEID2=
###############################################################################
# import generic ruleset
#
###############################################################################
include Common.mk