Skip to content

Commit

Permalink
Fixed bug in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
singraber committed Oct 5, 2020
1 parent 23727d9 commit 67cbf5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libnnp/makefile
Expand Up @@ -62,12 +62,12 @@ OBJ=$(SRC:.cpp=.o)
.PHONY: all headers version clean rebuild

ifeq ($(MODE), shared)
all: version headers $(LIB).so
all: headers $(LIB).so
else
all: version headers $(LIB).a
all: headers $(LIB).a
endif

headers:
headers: version
cp $(HEADERS) $(PROJECT_INCLUDE)

version:
Expand Down

0 comments on commit 67cbf5a

Please sign in to comment.