Diff of /trunk/cforge/cforge/Makefile [000000] .. [r42]  Maximize  Restore

Switch to unified view

a b/trunk/cforge/cforge/Makefile
1
OUTPUT=bin/Debug/cforge.exe
2
PACKAGE=../../cforge.package
3
4
all: ${OUTPUT}
5
6
bin/Debug/cforge.exe: cforge.csproj
7
8
# cross build a visual studio project
9
%.exe:
10
    xbuild $<
11
12
# prepared, but doesn't work, yet
13
%.package: ${OUTPUT}
14
    mono ${OUTPUT} --build $$(dirname $@)/$$(basename $@ .package)
15