This commit is contained in:
2026-01-16 03:20:38 -08:00
parent e0d8693840
commit 94d5749d31
19 changed files with 1358 additions and 3 deletions

View File

@ -1,5 +1,5 @@
CC=gcc
CFLAGS=-g -std=c11
CFLAGS=-g -std=c11 -Wall -Wpedantic
LD=gcc
LDFLAGS=-g
@ -12,7 +12,7 @@ glisp: $(OBJS)
bin/%.o: src/%.c
@mkdir -p bin/deps
$(CC) $(CFLAGS) -c -MMD -MF $(^:src/%.c=bin/deps/%.d) -o $@ $^
$(CC) $(CFLAGS) -c -MMD -MF $(<:src/%.c=bin/deps/%.d) -o $@ $<
clean:
rm -rf glisp bin/