tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 14 Feb 2018 15:39:27 +0100
changeset 1934 67b06b30f2bd
parent 1542 0535a6b50534
permissions -rw-r--r--
Changed meaning of -c commandline argument for Beremiz service : only gives DEFAULT wamp config.
If existing project already has a wamp config, it is taken instead.
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 $< -> $@"