e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
23 lines
578 B
Makefile
23 lines
578 B
Makefile
thisdir = tools/mconfig
|
|
SUBDIRS =
|
|
include ../../build/rules.make
|
|
|
|
LOCAL_MCS_FLAGS =
|
|
LIB_REFS = System.Xml System
|
|
PROGRAM = mconfig.exe
|
|
|
|
BUILT_SOURCES=Mono.MonoConfig/consts.cs
|
|
|
|
Mono.MonoConfig/consts.cs: Mono.MonoConfig/consts.cs.in
|
|
sed -e "s;@MONO_SYSCONFDIR@;$(sysconfdir);g" < $< > $@
|
|
|
|
install-local: install-local-data
|
|
|
|
install-local-data:
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir)/mono/mconfig/
|
|
$(INSTALL_DATA) data/config.xml $(DESTDIR)$(sysconfdir)/mono/mconfig
|
|
|
|
EXTRA_DISTFILES = TODO data/config.xml Mono.MonoConfig/consts.cs.in
|
|
|
|
include ../../build/executable.make
|