makefile_inc_dir := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST)))) all: helloworld include $(makefile_inc_dir)/../../build/Makefile.rules vpath %.c $(makefile_inc_dir) helloworld: main.c $(RPP_LIB_DIR)/rpp-lib.lib $(CC) $(RPP_CFLAGS) $(RPP_MAKE_CFLAGS) $< $(RPP_LDFLAGS) $(RPP_LDLIBS) -o $@ clean:: $(call rm,helloworld) -include $(wildcard *.dep)