15 lines
334 B
Makefile
15 lines
334 B
Makefile
|
MDTOOL_OPTS = --verbose
|
||
|
|
||
|
theme_SCRIPTS = thememan.exe thememan
|
||
|
themedir = $(bindir)
|
||
|
|
||
|
thememan.exe: htm-mono.csproj
|
||
|
$(MDTOOL) $(MDTOOL_OPTS) build $<
|
||
|
|
||
|
thememan:
|
||
|
@echo "#!/bin/sh" > $@
|
||
|
@echo "exec mono /usr/bin/thememan.exe \"$@\"" >> $@
|
||
|
|
||
|
clean-local:
|
||
|
rm -f thememan.exe thememan.exe.config thememan.exe.mdb thememan Main.resources
|