mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-16 08:11:00 +02:00
8 lines
141 B
Makefile
8 lines
141 B
Makefile
DLLTOOL = x86_64-w64-mingw32-dlltool
|
|
|
|
all: \
|
|
$(patsubst %.def,lib%.a,$(wildcard *.def))
|
|
|
|
lib%.a: %.def
|
|
$(DLLTOOL) --def $< --output-lib $@
|