diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-20 23:03:00 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-20 23:03:00 -0400 |
commit | 700a1b10b3a9d021b6a02d0f837ddfde52578634 (patch) | |
tree | 7f4e7164bd747d490a7663e324b9ec4eecfa4900 /preinit/Makefile | |
parent | 3d25ee9a165c3962473194c6c0e913fbbeb7045e (diff) |
initial commit
Diffstat (limited to 'preinit/Makefile')
-rw-r--r-- | preinit/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/preinit/Makefile b/preinit/Makefile new file mode 100644 index 0000000..698bf99 --- /dev/null +++ b/preinit/Makefile @@ -0,0 +1,6 @@ +all: + gcc -m32 -march=i486 -mtune=i486 -fno-if-conversion -fno-if-conversion2 \ + -static -nostdlib -nostartfiles -ffreestanding -fno-pic -fno-pie \ + -Os -ffunction-sections -fdata-sections -Wl,-gc-sections \ + -Ilinux-headers \ + init.c -o init |