diff options
author | Ingela Anderton Andin <[email protected]> | 2015-06-03 16:46:32 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-06-03 17:47:03 +0200 |
commit | 9a6662bd15c03a9607d328b5efbaf592a4205574 (patch) | |
tree | 021f0ad791346a438fee0b407be4cc84e490fbee /lib | |
parent | 051a662cdc5cfc2aa93d86119688c14743837a5f (diff) | |
download | otp-9a6662bd15c03a9607d328b5efbaf592a4205574.tar.gz otp-9a6662bd15c03a9607d328b5efbaf592a4205574.tar.bz2 otp-9a6662bd15c03a9607d328b5efbaf592a4205574.zip |
ssh: Correct Makefile
The ssh application does not have any external include files
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh/src/Makefile b/lib/ssh/src/Makefile index 90d71107ad..a06d8acfd4 100644 --- a/lib/ssh/src/Makefile +++ b/lib/ssh/src/Makefile @@ -75,7 +75,7 @@ MODULES= \ ssh_transport \ ssh_xfer -PUBLIC_HRL_FILES= ssh.hrl ssh_userauth.hrl ssh_xfer.hrl +HRL_FILES = ERL_FILES= \ $(MODULES:%=%.erl) \ @@ -95,7 +95,7 @@ APP_TARGET= $(EBIN)/$(APP_FILE) APPUP_SRC= $(APPUP_FILE).src APPUP_TARGET= $(EBIN)/$(APPUP_FILE) -INTERNAL_HRL_FILES = ssh_auth.hrl ssh_connect.hrl ssh_transport.hrl +INTERNAL_HRL_FILES = ssh_auth.hrl ssh_connect.hrl ssh_transport.hrl ssh.hrl ssh_userauth.hrl ssh_xfer.hrl # ---------------------------------------------------- # FLAGS @@ -140,7 +140,7 @@ release_spec: opt $(INSTALL_DATA) $(BEHAVIOUR_TARGET_FILES) $(TARGET_FILES) $(APP_TARGET) \ $(APPUP_TARGET) "$(RELSYSDIR)/ebin" $(INSTALL_DIR) "$(RELSYSDIR)/include" - $(INSTALL_DATA) $(PUBLIC_HRL_FILES) "$(RELSYSDIR)/include" + release_docs_spec: |