summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e69de29..aa67df9 100644
--- a/Makefile
+++ b/Makefile
@@ -0,0 +1,11 @@
+# the compiler: gcc for C program, define as g++ for C++
+CC = gcc
+# compiler flags:
+# -g adds debugging information to the executable file
+# -Wall turns on most, but not all, compiler warnings
+CFLAGS = -g -Wall
+
+# the build target executable:
+TARGET = myprog
+
+all: $(TARGET)