tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 10 Jul 2018 12:51:28 +0200
branchnevow_service_rework
changeset 2219 73042b2d8d65
parent 1542 0535a6b50534
permissions -rw-r--r--
Added a way for extension to register dedicated URL under settings page URL (i.e. /settings/something)
BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)

all: warn some_binary
	@echo "*** all done ***"

warn:
	@echo "*** Sample Makefile, does nothing ***"

some_binary: $(BEREMIZ_OBJS)
	@echo "* Would link $^ -> $@"

%.o: %.c
	@echo "* Would compile $< -> $@"