summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1953ff3..796728f 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,7 @@
############ some constants ############
+
#submodules
SUBDIRS=boot1 boot2 font userspace
@@ -29,7 +30,7 @@ CC=i686-foolos-gcc
############ compiler flags ############
CFLAGS=
#CFLAGS+=-fstack-protector-all
-#CFLAGS+=-w
+CFLAGS+=-w
CFLAGS+=-ffreestanding
CFLATS+=-Wall
CFLAGS+=-Wextra
@@ -50,7 +51,11 @@ LDFLAGS=
LDFLAGS+=-nostdlib
LDFLAGS+=-lgcc
-
+#verbosity
+#V = 0
+#CC = @echo "Compiling $<..."; i686-foolos-gcc
+#CC_1 = $(CCC)
+#CC = $(CC_$(V))
############ source and object files and their deps ############