Fix makefile, readme

This commit is contained in:
plutoo 2017-09-10 23:35:59 +02:00
parent ea07a84df6
commit 3b8da4cddc
3 changed files with 13 additions and 5 deletions

View File

@ -1,7 +1,12 @@
all:
make -C crt0/
make -C nx/
make -C tools/
install:
make -C buildscripts/ install
make -C crt0/ install
make -C nx/
make -C nx/ install
clean:
make -C crt0/ clean

View File

@ -1,5 +1,7 @@
# Nintendo Switch AArch64-only userland library. Based on libctru.
# Nintendo Switch AArch64-only userland library.
Based on libctru.
Install using:
make install
# Install instructions
* Setup $DEVKITA64 in your environment.
* make install
* cd tools/ && sudo make install

View File

@ -1,3 +1,4 @@
// Copyright 2017 plutoo
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>