about summary refs log tree commit diff stats
path: root/Makefile.gc
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-07-11 20:59:41 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-07-11 20:59:41 -0400
commitf31274f14656be2498b05027f668d9a55fb26f6b (patch)
treec3320ea313e56f0a7b4ab68c171226839cb5ec88 /Makefile.gc
parent5ef8856578d31957964c3e503f87cde3dcc89219 (diff)
parentd642a84189db1ec39514bc1731b2b1ac5c704547 (diff)
downloadgen3uploader-f31274f14656be2498b05027f668d9a55fb26f6b.tar.gz
gen3uploader-f31274f14656be2498b05027f668d9a55fb26f6b.tar.bz2
gen3uploader-f31274f14656be2498b05027f668d9a55fb26f6b.zip
Merged in gba-gen3multiboot
I originally cloned this repo from gba-link-cable-dumper so this commit
is merging in the "changes" from gba-gen3multiboot even though I really
already applied everything myself. Also changed the output binary name,
and removed the unused dependency on libfat.

Todo: rewrite README.
Diffstat (limited to 'Makefile.gc')
-rw-r--r--Makefile.gc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.gc b/Makefile.gc index 431c094..eaaf3b9 100644 --- a/Makefile.gc +++ b/Makefile.gc
@@ -15,7 +15,7 @@ include $(DEVKITPPC)/gamecube_rules
15# SOURCES is a list of directories containing source code 15# SOURCES is a list of directories containing source code
16# INCLUDES is a list of directories containing extra header files 16# INCLUDES is a list of directories containing extra header files
17#--------------------------------------------------------------------------------- 17#---------------------------------------------------------------------------------
18TARGET := linkcabledump_gc 18TARGET := gen3uploader_gc
19BUILD := build 19BUILD := build
20SOURCES := source 20SOURCES := source
21DATA := data 21DATA := data
@@ -33,7 +33,7 @@ LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
33#--------------------------------------------------------------------------------- 33#---------------------------------------------------------------------------------
34# any extra libraries we wish to link with the project 34# any extra libraries we wish to link with the project
35#--------------------------------------------------------------------------------- 35#---------------------------------------------------------------------------------
36LIBS := -lfat -logc 36LIBS := -logc
37 37
38 38
39#--------------------------------------------------------------------------------- 39#---------------------------------------------------------------------------------