mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-11-02 09:49:24 +00:00
14 lines
244 B
Makefile
14 lines
244 B
Makefile
THIS_FILENAME = $(lastword $(MAKEFILE_LIST))
|
|
THIS_DIR = $(dir $(THIS_FILENAME))
|
|
|
|
all:
|
|
$(MAKE) -C $(THIS_DIR) $(TARGETS)
|
|
|
|
ifneq ($(INSTALL_TARGETS),)
|
|
install:
|
|
$(MAKE) -C $(THIS_DIR) $(INSTALL_TARGETS)
|
|
else:
|
|
install:
|
|
endif
|
|
|
|
.PHONY: all install
|