forked from waffledood/ReverseSnake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
46 lines (39 loc) · 1.28 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
##########################################################################################
# Makefile to be used with the HAM SDK (www.ngine.de)
#
# Created using VisualHAM (www.console-dev.de)
#
##########################################################################################
HAMDIR = /mnt/c/GBADev
include $(HAMDIR)/system/master.mak
#
# Set the name of your desired GBA image name here
#
PROGNAME=ca3
#
# Set a list of files you want to compile
#
OFILES += main.o
#
# Set a list of libraries you want to link
#
ADD_LIBS +=
#
# Compile using Krawall software (set to yes or no) ?
# Also specify if Krawall is registered (yes or no)
#
USE_KRAWALL=no
KRAWALL_IS_REGISTERED=no
KRAWALL_FILES=
##########################################################################################
# Standard Makefile targets start here
##########################################################################################
all : $(PROGNAME).$(EXT)
#
# Most Makefile targets are predefined for you, suchas
# vba, clean ... in the following file
#
include $(HAMDIR)/system/standard-targets.mak
##########################################################################################
# Add custom makefile targets here
##########################################################################################