summaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: c6c5643aa54855601d4740d577ba524bf0e1a872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.POSIX:

CC      = cc
CFLAGS  = -Wall -Wextra -Wpedantic -Werror \
	  -Og -g -ggdb
LDFLAGS = -I../src

progs = gehashmap gevector

all: ${progs}

gehashmap: gehashmap.c
gevector:  gevector.c

clean:
	rm -f ${progs}