aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/windows-pipe/Makefile
blob: cff89b47b6edf70e7c70e4c18f1233e1cb60ffb4 (plain) (blame)
1
2
3
4
5
6
7
8
CC := x86_64-w64-mingw32-gcc
CFLAGS ?= -O3
CFLAGS += -Wall
enumerate-and-get.exe: enumerate-and-get.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $<
clean:
	rm -f enumerate-and-get.exe
.PHONY: clean