From 4fc423446c5f093483a4f20094904fa8b4ff88ba Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 4 Jan 2023 12:03:26 -0800 Subject: parsing mostly works --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Makefile') 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) -- cgit