blob: 5c387e3664ec7f33cbd5a4902d04c739b6029ebd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 "$(bindir)/thememan.exe" "$$@"' >> $@
clean-local:
rm -f thememan.exe thememan.exe.config thememan.exe.mdb thememan Main.resources
|