beremiz
Clone
Summary
Browse
Changes
Graph
add $(Beremiz installation)/mingw/bin in PATH on Windows platform
2016-10-24, Andrey Skvortsov
f526fd97a7b0
add $(Beremiz installation)/mingw/bin in PATH on Windows platform
This fixes issue if multiple gcc installation are found in user's
PATH. Now gcc from Beremiz is used by default.
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 $< -> $@"