diff options
author | tcsullivan <tullivan99@gmail.com> | 2018-11-17 14:49:42 -0500 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2018-11-17 14:49:42 -0500 |
commit | e88b4f9040b63d70563bee8553596f3c317022a5 (patch) | |
tree | 49298508c9b07935670086d4dd3925da54d78aed /initrd/Makefile | |
parent | c6ef89664b8c0d7aa85bddd5c7014aa6df82cbe7 (diff) |
fixed pdclib for arm, can make programs for stmos
Diffstat (limited to 'initrd/Makefile')
-rw-r--r-- | initrd/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/initrd/Makefile b/initrd/Makefile new file mode 100644 index 0000000..b2ca46f --- /dev/null +++ b/initrd/Makefile @@ -0,0 +1,4 @@ +all: + @arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -fsigned-char -Os -nostdinc \ + -I../src/pdclib/include -I../src/pdclib/platform/stmos/include \ + test.c ../src/pdclib/pdclib.a -s -o test -pie |