aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-02 08:48:31 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-02 08:48:31 -0700
commitc8b9286e2184b6d936e6007f81ead3367a4870b6 (patch)
tree3a365732c0b66d0db21018e64960a04516b0a0df /Makefile
parent80a9db5cab5544badc511fa19aadb5bbfb409c97 (diff)
feat: started port of st to wayland
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 4a70bac..dd18cc6 100644
--- a/Makefile
+++ b/Makefile
@@ -12,15 +12,15 @@ OBJ_DIR := build
TST_DIR := test
# C runtime library
-CINIT := #$(LIB_DIR)/crt/crt1.o $(LIB_DIR)/crt/x86_64/crti.o `gcc --print-file-name=crtbeginS.o`
-CFINI := #`gcc --print-file-name=crtendS.o` $(LIB_DIR)/crt/x86_64/crtn.o
+CINIT := $(LIB_DIR)/crt/crt1.o $(LIB_DIR)/crt/x86_64/crti.o `gcc --print-file-name=crtbeginS.o`
+CFINI := `gcc --print-file-name=crtendS.o` $(LIB_DIR)/crt/x86_64/crtn.o
# Flags, Libraries and Includes
CFLAGS := -g -march=native -fno-strict-aliasing -fwrapv -fms-extensions
-STATIC := #-nodefaultlibs -nostartfiles -static
+STATIC := -nodefaultlibs -nostartfiles -static
AFLAGS := -f elf64
-INCS := -I $(INC_DIR) #-isystem $(INC_DIR)/vendor/libc
-ELIBS := #-L$(LIB_DIR) -lc
+INCS := -I $(INC_DIR) -isystem $(INC_DIR)/vendor/libc
+ELIBS := -L$(LIB_DIR) -lc
# Named generic rules (must be evaluated lazily)
COMPILE = @echo "CC "$@;\