23 lines
712 B
Makefile
23 lines
712 B
Makefile
CS := $(shell find . -not \( -path ./.git \) -not \( -name '*Generator.cs' \) -name '*.cs')
|
|
GENERATORS := $(shell find . -not \( -path ./.git \) -not \( -path ./T4/Generator.cs \) -name '*Generator.cs')
|
|
GENERATED := $(patsubst %Generator.cs,%Generated.cs,$(GENERATORS))
|
|
|
|
.PHONY: run
|
|
run: main.exe
|
|
MONO_PATH=/usr/lib/mono/4.5/:/usr/lib/mono/4.5/Facades/ mono main.exe
|
|
|
|
main.exe: $(sort $(CS) $(GENERATED))
|
|
mcs -out:$@ \
|
|
/reference:/usr/lib/mono/fsharp/FSharp.Core.dll \
|
|
/reference:/usr/lib/mono/4.5/System.Collections.Immutable.dll \
|
|
/reference:/usr/lib/mono/4.5/Facades/netstandard.dll \
|
|
$^
|
|
|
|
%Generated.cs: .%Generator.exe
|
|
mono $<
|
|
|
|
.%Generator.exe: %Generator.cs T4/Generator.cs
|
|
mcs -out:$@ $^
|
|
|
|
|