diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-12-24 02:26:00 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-12-24 02:26:40 +0100 |
commit | a5d1c6da7e5617c15dd729a7907fb38cc25c2e1b (patch) | |
tree | a2311d363a96a6165b4bb3a956b653efbcab2aa1 /examples/Makefile | |
parent | 144bd88ff5146af4df99596606a7bf2a624723fc (diff) |
Add vectors
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/Makefile b/examples/Makefile index 25d3fa5..af41d5d 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -4,11 +4,13 @@ CC = cc CFLAGS = -Og -g -ggdb LDFLAGS = -I../src -srcs = gehashmap +progs = gehashmap gevector -all: ${srcs} +all: ${progs} gehashmap: gehashmap.c +gevector: gevector.c + clean: - rm -f ${srcs} + rm -f ${progs} |