a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
521 B
Makefile
23 lines
521 B
Makefile
#!/usr/bin/make -f
|
|
RUN_MONO = MONO_PATH=mcs/class/lib/build/ mono/mini/mono
|
|
|
|
override_dh_auto_test:
|
|
# do nothing here
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --prefix=/opt/mono-%SNAPVER% --sysconfdir=/opt/mono-%SNAPVER%/etc
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
$(RUN_MONO) mcs/class/lib/build/mcs.exe \
|
|
-target:exe \
|
|
-out:debian/MonoGetAssemblyName.exe \
|
|
debian/MonoGetAssemblyName.cs
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
rm -f debian/MonoGetAssemblyName.exe
|
|
|
|
%:
|
|
dh $@
|