Skip to content

Commit 67cbf5a

Browse files
committed
Fixed bug in makefile
1 parent 23727d9 commit 67cbf5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libnnp/makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ OBJ=$(SRC:.cpp=.o)
6262
.PHONY: all headers version clean rebuild
6363

6464
ifeq ($(MODE), shared)
65-
all: version headers $(LIB).so
65+
all: headers $(LIB).so
6666
else
67-
all: version headers $(LIB).a
67+
all: headers $(LIB).a
6868
endif
6969

70-
headers:
70+
headers: version
7171
cp $(HEADERS) $(PROJECT_INCLUDE)
7272

7373
version:

0 commit comments

Comments
 (0)