mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 05:35:40 +00:00
20 lines
327 B
Makefile
20 lines
327 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
|