diff options
author | c+1 | 2023-05-10 07:53:59 -0400 |
---|---|---|
committer | c+1 | 2023-05-10 07:53:59 -0400 |
commit | 8dd1bf3637c0d01816bbd48b28c02e9791243d35 (patch) | |
tree | 1ab6a623f825c884e42c705cf573b52e54aac092 /Makefile | |
parent | ed14de35050de7b16312a7d69d5823de3fa4002a (diff) |
THE halk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ exec = halk.out -sources = $(wildcard src/*.c) +sources := $(wildcard src/*.c) +sources := $(filter-out src/parser.c, $(sources)) # exclude the incomplete parser for now. objects = $(sources:.c=.o) flags = -g |