mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 05:35:38 +00:00
eca30c3078
* gconf/Makefile.in, sample/Makefile.in: Use $(MAKE) not "make." * parser/Makefile.in: Use CFLAGS and CPPFLAGS hints from configure, and the base dependency CFLAGS. Fixes case where iconv.h is outside of the compiler's default path. svn path=/trunk/gtk-sharp/; revision=9578
20 lines
336 B
Makefile
20 lines
336 B
Makefile
SUBDIRS = GConf GConf.PropertyEditors tools
|
|
|
|
@ENABLE_GNOME_TRUE@ all: linux
|
|
@ENABLE_GNOME_FALSE@ all:
|
|
|
|
linux:
|
|
for i in $(SUBDIRS); do \
|
|
$(MAKE) -C $$i || exit 1; \
|
|
done
|
|
|
|
install: all
|
|
for i in $(SUBDIRS); do \
|
|
$(MAKE) -C $$i install || exit 1; \
|
|
done
|
|
|
|
clean:
|
|
for i in $(SUBDIRS); do \
|
|
$(MAKE) -C $$i clean || exit 1; \
|
|
done
|