summary refs log tree commit diff
path: root/makefile
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-02-14 19:35:57 +0200
committerWlodekM <[email protected]>2025-02-14 19:35:57 +0200
commit778b24d74f4763f46ea874a6777e39b794006c44 (patch)
tree7f9b131d0bce7e3c7898dbe18fd69cccd292afe7 /makefile
parenta8cde132b0f2ff7d6c7a3616ad3e75a70af072b9 (diff)
smolshel - works
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 990196a..51a756e 100644
--- a/makefile
+++ b/makefile
@@ -16,8 +16,8 @@ all: build_asmlib build_init build_shell build_fdmaker build_devscan
 		if [ -d $$dir ]; then \
 			name=$$(basename $$dir); \
 			echo "Processing $$name $$dir/$$name.c"; \
-			rm build/$$name; \
-			gcc -o ./build/$$name $$dir/$$name.c -z noexecstack -static -march=x86-64; \
+			rm sbuild/$$name; \
+			gcc -o ./sbuild/$$name $$dir/$$name.c -z noexecstack -static -march=x86-64; \
 		fi \
 	done