Warning, /eic-spack/packages/dawncut/install.patch is written in an unsupported language. File is not indexed.
0001 diff --git a/Makefile b/Makefile
0002 index 1dda775..e8a567f 100644
0003 --- a/Makefile
0004 +++ b/Makefile
0005 @@ -1,6 +1,7 @@
0006 include ./Makefile.architecture
0007
0008 TARGET = dawncut
0009 +INSTALL_DIR ?= /usr/local/bin
0010
0011 SRC_DIR = src
0012
0013 @@ -44,3 +45,7 @@ clean :
0014 $(RM) $(TARGET) core
0015 $(RM) *~ \#*
0016
0017 +### install
0018 +install:
0019 + mkdir -p $(INSTALL_DIR)
0020 + cp -p ./$(TARGET) $(INSTALL_DIR)/$(TARGET)