diff options
| author | ubq323 <ubq323@ubq323.website> | 2023-08-05 04:15:17 +0100 | 
|---|---|---|
| committer | ubq323 <ubq323@ubq323.website> | 2023-08-05 04:15:20 +0100 | 
| commit | 9ee73a8459eb2bb58adc29da02de312b7e4e7dca (patch) | |
| tree | f41bddde050c61e254af8ba4c53a3bc11ca7b804 /Makefile | |
| parent | 93fe66fb8ef5c731b46a30a804f74b4bf3b133d7 (diff) | |
refactor hashtables, and use objstrings for keys
doesn't yet work without string interning, which will require
further refactoring
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ -CS=ast.c com.c dis.c mem.c prs.c read.c val.c vm.c -HS=ast.h       dis.h mem.h prs.h read.h val.h vm.h +CS=ast.c com.c dis.c ht.c mem.c prs.c read.c val.c vm.c +HS=ast.h       dis.h ht.h mem.h prs.h read.h val.h vm.h  CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration  bþ: $(CS) $(HS) | 
