aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-03-04 15:43:28 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-03-04 15:43:28 +0200
commit5f0006cfa7c499a501969641ac7bd630cb4706de (patch)
tree68e792da03c4ec36241dee787bc0dd7835dfd907 /makefile
parentAdd some comments to keyboard driver (diff)
downloadkernel.cpp-5f0006cfa7c499a501969641ac7bd630cb4706de.tar.xz
pass cpu_state_t to interrupt handler
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index f570a4f..9af9064 100644
--- a/makefile
+++ b/makefile
@@ -20,7 +20,7 @@ glitch.elf: $(autogen) $(AS_OBJ) $(CXX_OBJ)
@echo " LD $@"
@$(LD) $(LD_FLAGS) -o $@ $(AS_OBJ) $(CXX_OBJ)
-$(AS_OBJ): $(OBJ_DIR)/%.o: %.s
+$(AS_OBJ): $(OBJ_DIR)/%.o: %.S
@mkdir -p $(@D)
@echo " AS $<"
@$(AS) -target $(TARGET) -nostdlib -Wall -Wextra -c $^ -o $@