From 3a118caf64f2ef91ae0c1f20cf3fa1cd92ebcf2e Mon Sep 17 00:00:00 2001 From: luca0N! <63941044+luca0N@users.noreply.github.com> Date: Sat, 23 May 2020 22:21:08 -0300 Subject: [PATCH] Added manifest support Based on issue #1. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3511b76..fb7e28d 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,12 @@ C=gcc CFLAG=-s -Os +MT=mt +MTARGS=-nologo ldl3: main.o about.h str.h colors.h $(C) main.o about.h str.h colors.h -o ldl3 $(CFLAG) + $(MT) -manifest ldl3.manifest -outputresource:ldl3.exe $(MTARGS) main.o: main.c $(C) -c main.c $(CFLAG)