e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
23 lines
481 B
Makefile
23 lines
481 B
Makefile
thisdir = tools/linker
|
|
SUBDIRS =
|
|
include ../../build/rules.make
|
|
|
|
RESOURCES = \
|
|
Descriptors/mscorlib.xml \
|
|
Descriptors/System.xml \
|
|
Descriptors/System.Core.xml \
|
|
Descriptors/System.Drawing.xml \
|
|
Descriptors/System.Web.xml \
|
|
Descriptors/Mono.Posix.xml \
|
|
|
|
PROGRAM = monolinker.exe
|
|
|
|
$(PROGRAM): $(RESOURCES)
|
|
|
|
LIB_REFS = System System.Core System.Xml Mono.Cecil
|
|
LOCAL_MCS_FLAGS = $(RESOURCES:%=-resource:%)
|
|
|
|
EXTRA_DISTFILES = $(RESOURCES)
|
|
|
|
include ../../build/executable.make
|