#178342 - guybrushthreepwood - Mon Mar 16, 2015 5:44 pm
I just installed devkitpro and tried copy pasting the example makefile directly..
but when I try to make it just says
> "make"
> Process Exit Code: 0
> Time Taken: 00:01
so what is an easy way I can compile my project? We were looking into using devkit pro instead of visual HAM. Thanks.
Code: |
SUBDIRS:= `ls | egrep -v '^(CVS)$$'` DATESTRING := $(shell date +%Y%m%d) all: @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done; clean: @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done; install: @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i install || { exit 1;} fi; done; #--------------------------------------------------------------------------------- dist: clean #--------------------------------------------------------------------------------- @tar --exclude=*CVS* --exclude=.svn -cvjf gba-examples-$(DATESTRING).tar.bz2 * |
but when I try to make it just says
> "make"
> Process Exit Code: 0
> Time Taken: 00:01
so what is an easy way I can compile my project? We were looking into using devkit pro instead of visual HAM. Thanks.