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