]> Chaos Git - corbenik/ctrulib.git/commitdiff
README : updated with "purpose"
authorsmea <smealum@gmail.com>
Mon, 20 Jan 2014 20:54:17 +0000 (21:54 +0100)
committersmea <smealum@gmail.com>
Mon, 20 Jan 2014 20:54:17 +0000 (21:54 +0100)
arm11u/Makefile : added mkdir for build (woops)

README.md
arm11u/Makefile

index 777202e94bac3c9f6c3b1468a78fe72255ecb4c7..01e0c2a2e75e665b918eb08fa0d4588404028d55 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,8 @@
 ctrulib
 =======
 
+CTR User Library
 library for writing user mode arm11 code for the 3DS (CTR)
+
+the goal with this is to create a very straightforward interface with the 3DS's OS.
+it is not meant to provide higher level functions; to put things in perspective, the purpose of ctrulib would be to sit between the OS and a possible port of SDL rather than replace it.
index 656b8dbefbf179b837611da0254f3fc35be55b0a..cfb8abd1b331ef8d3338b09b9fa89b878d904cba 100644 (file)
@@ -12,9 +12,12 @@ SFILES = $(wildcard source/*.s)
 OFILES += $(SFILES:source/%.s=build/%.o)
 PROJECTNAME = ${shell basename "$(CURDIR)"}
 
-.PHONY:=all
+.PHONY:=all dir
 
-all: $(PROJECTNAME).bin
+all: dir $(PROJECTNAME).bin
+
+dir:
+       mkdir -p build
 
 $(PROJECTNAME).bin: $(PROJECTNAME).elf
        $(OBJCOPY) -O binary $< $@