summaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-07-05 13:37:42 +0200
committerMarvin Borner2021-07-05 13:37:42 +0200
commita6858f40888338608fede867d279831e98ec0766 (patch)
tree8abc54c50680fe897349ba5d11f9e5bcf22ee13e /makefile
parent832a5046b42f53f7ab329942a862e1b4c0a6f6db (diff)
Better dev environment
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 62acb87..ae77b9e 100644
--- a/makefile
+++ b/makefile
@@ -7,8 +7,8 @@ OC = $(PWD)/cross/opt/bin/i686-elf-objcopy
ST = $(PWD)/cross/opt/bin/i686-elf-strip
AS = nasm
-BLD = $(PWD)/build/
-SRC = $(PWD)/src/
+BLD = $(PWD)/build
+SRC = $(PWD)/src
SRCS = $(wildcard $(SRC)/loader/*.c)
OBJS = $(patsubst $(SRC)/%.c,$(BLD)/%.o,$(SRCS))