mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 00:15:36 +00:00
82646f231e
* makefile : Make ROOT /cygdrive/, not //. svn path=/trunk/gtk-sharp/; revision=1499
16 lines
381 B
Makefile
16 lines
381 B
Makefile
DIRS=codegen glib gdk gtk sample
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.2914/csc.exe
|
|
|
|
all:
|
|
@echo "You must use 'make windows' or 'make unix'."
|
|
@echo "'make unix' is broken for now."
|
|
|
|
windows:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; CSC=$(CSC) make windows) || exit 1;\
|
|
done;
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|