diff --git a/Makefile b/Makefile index e69c1cc6..ebb5a1d6 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ EMUARGS = -kernel toaruos-kernel -m 256 -append "vid=qemu hdd" -serial stdio -vg EMUKVM = -enable-kvm H=hdd/bin -INITRDBIN = $H/clear $H/cat $H/terminal $H/esh $H/echo $H/init $H/login $H/ls $H/uname $H/fire $H/donut $H/whoami $H/yes +INITRDBIN = $H/reboot $H/nyancat $H/clear $H/cat $H/terminal $H/esh $H/echo $H/init $H/login $H/ls $H/uname $H/fire $H/donut $H/whoami $H/yes .PHONY: all system clean clean-once clean-hard clean-soft clean-docs clean-bin clean-aux clean-core update-version install run docs utils .SECONDARY: diff --git a/userspace/Makefile b/userspace/Makefile index 901c9409..4669368d 100644 --- a/userspace/Makefile +++ b/userspace/Makefile @@ -2,7 +2,7 @@ CC = i686-pc-toaru-gcc CPP = i686-pc-toaru-g++ CFLAGS = -std=c99 -O3 -m32 -Wa,--32 -Xlinker --eh-frame-hdr CPPFLAGS = -O3 -m32 -Wa,--32 -EXTRAFLAGS = -g +EXTRAFLAGS = -s EXECUTABLES = $(patsubst %.c,%.o,$(wildcard lib/*.c)) $(patsubst %.c,../hdd/bin/%,$(wildcard *.c)) $(patsubst %.cpp,../hdd/bin/%,$(wildcard *.cpp)) BEG = ../util/mk-beg