12acb7ff05
* generator/*Gen.cs : Use Path.DirectorySeparatorChar. * generator/Parser.cs : better debug for unexpected types. * generator/SymbolTable.cs : Use linux library names. svn path=/trunk/gtk-sharp/; revision=3308
20 lines
471 B
Makefile
20 lines
471 B
Makefile
DIRS=generator glib pango atk gdk gtk sample
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe
|
|
|
|
all:
|
|
@echo "You must use 'make windows' or 'make linux'."
|
|
@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."
|
|
|
|
linux:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; make linux) || exit 1;\
|
|
done;
|