Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ OPENMP := -fopenmp
#OPENMP := -openmp -parallel

LIBS := -lm $(OPENMP) -ladolc -lnlopt -L/usr/lib64:/usr/local/lib64
LDFLAGS := -L/usr/local/lib64 -I/usr/local/include
LDFLAGS := @LDFLAGS@ -L/usr/local/lib64 -I/usr/local/include

RM := rm -rf

SRC_DIR = ./

prefix = /usr/bin/
prefix = @prefix@

CPP_SRCS += \
./main.cpp \
Expand Down Expand Up @@ -86,8 +86,8 @@ distclean:
-$(RM) *.o *.d configure config.log config.h config.status treePL Makefile

install:
install -m 0755 treePL $(prefix)
install -Dm 0755 treePL $(prefix)/bin/treePL

uninstall:
-rm $(prefix)treePL
-rm $(prefix)/bin/treePL