diff options
author | Joshua Randall | 2014-10-30 18:22:42 +0000 |
---|---|---|
committer | Joshua Randall | 2014-10-30 18:22:42 +0000 |
commit | 9a5eeda5bd2017ac5cc03893b4955cc993307f05 (patch) | |
tree | a7bbac96f4050902996185071152e8eb84b2bde5 | |
parent | f1b80da01aa20498c7efd18b19df094f32661d8f (diff) | |
download | pangemma-9a5eeda5bd2017ac5cc03893b4955cc993307f05.tar.gz |
Adds $(OUTPUT) files to `make clean` target
Modifies the `make clean` target so that output binaries
bin/gemma and/or bin/gemmaf will be removed so that they
will definitely be rebuilt after `make clean`
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ $(OBJS) : $(HDR) clean: - rm -rf ${SRC_DIR}/*.o ${SRC_DIR}/*~ *~ ${SRC_DIR}/*_float.* + rm -rf ${SRC_DIR}/*.o ${SRC_DIR}/*~ *~ ${SRC_DIR}/*_float.* $(OUTPUT) tar: tar cvzf gemma-0.93.tar.gz COPYING.txt README.txt Makefile src doc example bin |