
BIN_DIR := $(abspath $(CURDIR)/../bin)

all: 
	gcc -g -o $(BIN_DIR)/hook_api_test hook_api_test.c

clean: 
	rm -rf $(BIN_DIR)/hook_api_test
