diff options
author | 2023-04-04 23:32:06 +0200 | |
---|---|---|
committer | 2023-04-04 23:32:06 +0200 | |
commit | 701b4fa6e78a7eebd8a7df9f51747df9209d23fd (patch) | |
tree | eb802e03f92790fa69ac3d7d49cb4738ce02652e | |
parent | 09c17437ab53204757b1b71e1815c7d9b47daa1a (diff) | |
download | string2-701b4fa6e78a7eebd8a7df9f51747df9209d23fd.tar.gz string2-701b4fa6e78a7eebd8a7df9f51747df9209d23fd.zip |
Correct some syntax error in Makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ # See LICENSE file for copyright and license details. PREFIX=/usr/local -INStALL_DIR=${PREFIX}/include +INSTALL_DIR=${PREFIX}/include -instal: +install: cp string2.h ${INSTALL_DIR}/string2.h uninstall: |