diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-21 14:18:54 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-21 14:36:08 +0100 |
commit | 377822b957c442b2ff0882b8325033487037be2b (patch) | |
tree | 9d71bc239e483b9c606dc9849fd890eab02b9a5b /Makefile | |
parent | 21994864559386f1d11c001d6d27714cbf624a15 (diff) |
þ -> th
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,16 +2,16 @@ CS=ast.c com.c dis.c ht.c mem.c prs.c read.c state.c val.c vm.c HS=ast.h dis.h ht.h mem.h prs.h read.h state.h val.h vm.h CFLAGS=$(EXTRA_CFLAGS) -O3 -lm -Wall -Wpedantic -Werror=implicit-function-declaration -bþ: $(CS) $(HS) Makefile - $(CC) $(CFLAGS) -o bþ $(CS) +bth: $(CS) $(HS) Makefile + $(CC) $(CFLAGS) -o bth $(CS) prs.c: g.peg packcc -o prs g.peg -test: bþ +test: bth ./run_tests.sh clean: - rm bþ prs.c prs.h + rm bth prs.c prs.h .PHONY: clean test |