Skip to content

Instantly share code, notes, and snippets.

@gromnitsky
gromnitsky / gmake-patsubst.c
Last active July 9, 2021 05:00
An extract of patsubst function from GNU Make
/*
An extract of patsubst function from GNU Make 4.2.90
(6f339b22eb87dc80d1037ccb04c787d156db0e8f)
$ cc gmake-patsubst.c -o gmake-patsubst
$ ./gmake-patsubst %.c %.o 'foo.c bar.c'
foo.o bar.o
*/
#include <stdio.h>