You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2016/07/02 16:59:10 UTC

[jira] [Created] (CRYPTO-99) Makefile clean removes too much

Sebb created CRYPTO-99:
--------------------------

             Summary: Makefile clean removes too much
                 Key: CRYPTO-99
                 URL: https://issues.apache.org/jira/browse/CRYPTO-99
             Project: Commons Crypto
          Issue Type: Bug
            Reporter: Sebb


The clean target currently consist of:

{code}
clean:
	rm -rf $(TARGET)
	rm -rf $(COMMONS_CRYPTO_OUT)
{code}

This removes some input files that it needs and anyway COMMONS_CRYPTO_OUT is under TARGET

It should only drop the files it actually creates.
For example:
{code}
clean:
	rm -rf $(TARGET)/jni-classes
	rm -rf $(COMMONS_CRYPTO_OUT)
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)