tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 27 Mar 2019 13:08:51 +0100
branchwx.NewID_abuse_fix
changeset 2566 66a3c64c8dd0
parent 1542 0535a6b50534
permissions -rw-r--r--
More wx.NewID abuse removal. This one was apparently silently unbinding toolbar butons when running out of mew wx IDs.
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 $< -> $@"