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)

Reply via email to