1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 10:05:05 -07:00

Add libnacl/Makefile.in

This commit is contained in:
Frank Denis 2013-01-19 18:08:06 -08:00
parent cb10e7fd59
commit 9cd4c769a7

44
src/libnacl/Makefile.in Normal file
View File

@ -0,0 +1,44 @@
all: .done
.done:
./do
touch .done
test:
cd tests && $(MAKE) $(AM_MAKEFLAGS) test
clean:
cd tests && $(MAKE) $(AM_MAKEFLAGS) clean
-$(RM) .done
-$(RM) -r okcompilers/bin
-$(RM) -r okcompilers/oldbin
-$(RM) -r build/*
distclean: clean
cd tests && $(MAKE) $(AM_MAKEFLAGS) distclean
-$(RM) okcompilers/c
-$(RM) okcompilers/do
install:
install-data:
install-exec:
uninstall:
install-dvi:
install-html:
install-info:
install-ps:
install-pdf:
installdirs:
check:
installcheck:
mostlyclean: clean
maintainer-clean: distclean
distdir:
while read dir ; do @MKDIR_P@ "$(distdir)/$$dir" ; done < dist-dirs
while read file ; do @INSTALL@ "$$file" "$(distdir)/$$file" ; done < dist-files
EMPTY_AUTOMAKE_TARGETS = dvi pdf ps info html tags ctags
.PHONY: $(EMPTY_AUTOMAKE_TARGETS)
$(EMPTY_AUTOMAKE_TARGETS):