Skip to content

Commit

Permalink
Enable FPKG building
Browse files Browse the repository at this point in the history
  • Loading branch information
fincs committed Aug 3, 2012
1 parent a8169f6 commit f47f08d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,5 +3,6 @@ lib/
*.elf
*.dbg
*.fx2
*.fpkg
*.a
*~
7 changes: 7 additions & 0 deletions Makefile
@@ -1,3 +1,10 @@
FEOSMK = $(FEOSSDK)/mk

MANIFEST := manifest.txt
PACKAGENAME := fss

include $(FEOSMK)/packagetop.mk

all:
@$(MAKE) -C arm7
@$(MAKE) -f mainlib.mk
Expand Down
3 changes: 2 additions & 1 deletion arm7/Makefile
Expand Up @@ -35,4 +35,5 @@ CONF_ARM7 = 1
include $(FEOSMK)/app.mk

install: all
@cp $(TARGET).fx2 $(FEOSDEST)/data/FeOS/arm7/$(TARGET).fx2 || exit 1
@mkdir -p $(FEOSDEST)/data/FeOS/arm7
@cp $(TARGET).fx2 $(FEOSDEST)/data/FeOS/arm7/$(TARGET).fx2
3 changes: 2 additions & 1 deletion mainlib.mk
Expand Up @@ -35,4 +35,5 @@ CONF_DEFINES = -DFSS_BUILD
include $(FEOSMK)/dynlib.mk

install: all
@cp $(TARGET).fx2 $(FEOSDEST)/data/FeOS/lib/$(TARGET).fx2 || exit 1
@mkdir -p $(FEOSDEST)/data/FeOS/lib
@cp $(TARGET).fx2 $(FEOSDEST)/data/FeOS/lib/$(TARGET).fx2
6 changes: 6 additions & 0 deletions manifest.txt
@@ -0,0 +1,6 @@
Title: FeOS Sound System library
Author: fincs <fincs@mtheall.com>
Copyright: 2012 fincs
Description: A library that allows programs to make use of the Nintendo DS sound hardware.
Version: 0.0-prerelease
License: WTFPL

0 comments on commit f47f08d

Please sign in to comment.