diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-04 12:03:26 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-04 12:03:26 -0800 |
commit | 4fc423446c5f093483a4f20094904fa8b4ff88ba (patch) | |
tree | 54d07d80c6de6c661d8fa6397ccbdb3b9d97cbad /Makefile | |
parent | 2fe28946e426e241e87e8381d7a62e73b9278385 (diff) |
parsing mostly works
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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) |