diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-24 22:55:29 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-24 22:55:29 -0400 |
commit | 236963e7563be3e3f8220dac7bb4af446928e194 (patch) | |
tree | e521ea226db0345bbb3679fffe09d96254b7dc73 /configure.ac | |
parent | 214eadc62b5578f76c98a38a28f8b3d80ac4d6ad (diff) |
Clean out for expt
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/configure.ac b/configure.ac deleted file mode 100644 index ec44f8c..0000000 --- a/configure.ac +++ /dev/null @@ -1,27 +0,0 @@ -AC_INIT([Hyra], [1.2], [ian@osmora.org]) - -KERN_CFLAGS_X86_64="-fexceptions --std=gnu11 -ffreestanding -fno-stack-protector -fno-pic \\ - -Werror=implicit -Werror=implicit-function-declaration \\ - -Werror=implicit-int -Werror=int-conversion \\ - -Werror=missing-prototypes \\ - -Werror=incompatible-pointer-types -Werror=int-to-pointer-cast \\ - -Werror=return-type -Wunused -mabi=sysv -mno-80387 -mno-mmx -mno-3dnow \\ - -mno-sse -mno-sse2 -mno-red-zone -mcmodel=kernel -pedantic \\ - -I sys/include/ -I sys/include/lib/ -D_KERNEL -Wno-pointer-sign -MMD" - -QEMU_FLAGS_X86_64="--enable-kvm -monitor stdio \\ - -M q35 -m 1G -smp 4 -cpu host \\ - -cdrom Hyra.iso" - -HYRA_BUILDDATE=`export LANG=en_US.UTF-8 ; date` -HYRA_BUILDBRANCH="`basename $PWD`" - -AC_SUBST(HYRA_BUILDDATE, [$HYRA_BUILDDATE]) -AC_SUBST(HYRA_BUILDBRANCH, [$HYRA_BUILDBRANCH]) - -AC_SUBST(KERNEL_CFLAGS, [$KERN_CFLAGS_X86_64]) -AC_SUBST(QEMU_FLAGS, [$QEMU_FLAGS_X86_64]) -AC_SUBST(QEMU, [qemu-system-x86_64]) -AC_SUBST(ARCH, [amd64]) -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT |