medit/plat/win32/gtk-win/Makefile

19 lines
350 B
Makefile
Raw Normal View History

2010-09-10 00:47:09 -07:00
top:
@echo "What target do you want?"
@exit 1
check-make:
@if [ ! -e $(mgwdir)/mjhbuild.sh ]; then echo "use make.sh"; exit 1; fi
build-gtk: check-make
$(mgwdir)/mjhbuild.sh build
build-data: check-make
mkdir -p $(mgwtargetdir)
cp -R $(mgwdir)/extra/medit-data/* $(mgwtargetdir)/
build: build-gtk build-data
2010-09-22 03:14:07 -07:00
clean:
rm -rf $(mgwtargetdir)