Added manifest support

Based on issue #1.
This commit is contained in:
luca0N! 2020-05-23 22:21:08 -03:00
parent cc64e9e4a4
commit 3a118caf64
No known key found for this signature in database
GPG Key ID: 9F1B99B522287CAB
1 changed files with 3 additions and 0 deletions

View File

@ -20,9 +20,12 @@
C=gcc C=gcc
CFLAG=-s -Os CFLAG=-s -Os
MT=mt
MTARGS=-nologo
ldl3: main.o about.h str.h colors.h ldl3: main.o about.h str.h colors.h
$(C) main.o about.h str.h colors.h -o ldl3 $(CFLAG) $(C) main.o about.h str.h colors.h -o ldl3 $(CFLAG)
$(MT) -manifest ldl3.manifest -outputresource:ldl3.exe $(MTARGS)
main.o: main.c main.o: main.c
$(C) -c main.c $(CFLAG) $(C) -c main.c $(CFLAG)