> From: <[email protected]> > Date: Sat, 19 Feb 2022 14:25:47 +0100 (CET) > > Problem is wisible on follow example of file Makefile.win: > > all : > echo $(pkg-config --libs glib-2.0)
This is wrong, you want
all :
echo $(shell pkg-config --libs glib-2.0)
The 'shell' function is missing.
