diff --git a/ctrtool/Makefile b/ctrtool/Makefile index 7a534c9..96d1c15 100644 --- a/ctrtool/Makefile +++ b/ctrtool/Makefile @@ -28,5 +28,9 @@ endif main: $(OBJS) $(CXX) -o $(OUTPUT) $(LIBS) $(OBJS) +install: $(OUTPUT) + @cp ./$(OUTPUT) -t $(DEVKITARM)/bin/ + @echo "Installed." + clean: rm -rf $(OUTPUT) $(OBJS) diff --git a/ctrtool/ctrtool b/ctrtool/ctrtool new file mode 100755 index 0000000..c5495b6 Binary files /dev/null and b/ctrtool/ctrtool differ diff --git a/makerom/Makefile b/makerom/Makefile index fd0832f..0ecdb69 100644 --- a/makerom/Makefile +++ b/makerom/Makefile @@ -31,5 +31,9 @@ rebuild: clean build build: $(OBJS) $(CC) -o $(OUTPUT) $(LIBS) $(OBJS) +install: $(OUTPUT) + @cp ./$(OUTPUT) -t $(DEVKITARM)/bin/ + @echo "Installed." + clean: - rm -rf $(OUTPUT) $(OBJS) \ No newline at end of file + rm -rf $(OUTPUT) $(OBJS) diff --git a/makerom/makerom b/makerom/makerom new file mode 100755 index 0000000..1a70e1c Binary files /dev/null and b/makerom/makerom differ