summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-28 14:26:17 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-28 14:26:17 +0100
commitb875bc86aac2c9a733ddb9b3db4ead94d2c4c053 (patch)
tree59b337e60288902a8d3237f4ac84a6898ba55d9f /Makefile
parent7526cbb7ea06a1862c732d367a759917695e1f08 (diff)
struggling with paging ...
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 ############