From 95ee822b45f0d6bd8e49d3f446ca65109c5c52be Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Thu, 20 Feb 2020 16:41:08 +0200 Subject: [PATCH] fixed build: missing comctl32.lib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a60499..a64d2ac 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ obj = $(src:.c=.o) bin = instimg.exe CFLAGS = -pedantic -Wall -g -LDFLAGS = -lgdi32 -lsetupapi -luuid +LDFLAGS = -lgdi32 -lsetupapi -luuid -lcomctl32 ifneq ($(shell uname -s | sed 's/MINGW.*/mingw/'), mingw) CC = i686-w64-mingw32-gcc -- 1.7.10.4