summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-04-07 11:54:05 +0300
committerWlodekM <[email protected]>2025-04-07 11:54:05 +0300
commit57098c94a5078abca3e26b1e16030bd7fff4e4a5 (patch)
treee813df5b9f42d1c658b40c368e607751b33365ec /Makefile
parent1e1073235796c838d5e1a3255f88ec97575e3582 (diff)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f209851..dc62eca 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 sbuild/sbin/$$name; \
-			gcc -o ./sbuild/sbin/$$name $$dir/$$name.c -z noexecstack -static -march=x86-64; \
+			rm build/sbin/$$name; \
+			gcc -o ./build/sbin/$$name $$dir/$$name.c -z noexecstack -static -march=x86-64; \
 		fi \
 	done