diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-16 03:39:09 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-16 03:39:09 +0200 |
commit | c6071aae178ff9c44820d533701c09577c8840c5 (patch) | |
tree | b93fef00dded87a360453df844b8041ff456fc62 /test/Makefile | |
parent | 02cdc2f8ef501a0fd8294946cce9ee3449853151 (diff) |
Create string_view struct
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 3d86f0e..7ef1bcc 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,13 +1,18 @@ CC=gcc .PHONY: all -all: hash_table_test +all: hash_table_test string_view_test .PHONY: hash_table_test hash_table_test: ../hash_table.o hash_table_test.c $(CC) -o hash_table_test ../hash_table.o hash_table_test.c ./hash_table_test +.PHONY: string_view_test +string_view_test: ../string_view.o string_view_test.c + $(CC) -o string_view_test ../string_view.o string_view_test.c + ./string_view_test + .PHONY: clean clean: @$(RM) hash_table_test |