mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-10-30 08:07:38 +00:00
728300331d
This commit removes git.mk and adds hand-written gitignore files. That is needed to ignore build/, which is the directory of choice for Meson builds. https://bugzilla.gnome.org/show_bug.cgi?id=778167
36 lines
625 B
Makefile
36 lines
625 B
Makefile
include $(top_srcdir)/Makefile.shared
|
|
|
|
DIRS = \
|
|
eel \
|
|
libnautilus-extension \
|
|
libgd \
|
|
src \
|
|
test \
|
|
data \
|
|
po \
|
|
docs \
|
|
$(NULL)
|
|
|
|
if ENABLE_DESKTOP
|
|
DIRS += nautilus-desktop
|
|
endif
|
|
|
|
DIST_SUBDIRS = $(DIRS) nautilus-sendto-extension
|
|
|
|
SUBDIRS = $(DIRS)
|
|
if ENABLE_NST_EXTENSION
|
|
SUBDIRS += nautilus-sendto-extension
|
|
endif
|
|
|
|
EXTRA_DIST= \
|
|
COPYING.LIB \
|
|
COPYING.EXTENSIONS \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
README.commits \
|
|
Makefile.shared \
|
|
$(NULL)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb --enable-gtk-doc
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
|