.POSIX:

CC      = cc
CFLAGS  = -Og -g -ggdb
LDFLAGS = -I../src

srcs = gehashmap

all: ${srcs}

gehashmap: gehashmap.c

clean:
	rm -f ${srcs}