Skip to content

Commit

Permalink
Merge branch 'iss-72' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Herbert Koelman committed Nov 10, 2016
2 parents 02247ff + c8d0245 commit e7f6930
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@ doxygen:

install:
$(MKDIR) $(INCLUDEDIR)
cd include/pthread && $(INSTALL) *.hpp *.h $(INCLUDEDIR)
$(INSTALL) lib/lib@PACKAGE_NAME@-@BUILD@.a @libdir@
cd ${LIBDIR} && $(LN_S) -f lib@PACKAGE_NAME@-@BUILD@.a lib@PACKAGE_NAME@.a
$(INSTALL) include/pthread/*.hpp include/pthread/*.h $(INCLUDEDIR)
$(INSTALL) lib/lib@PACKAGE_NAME@.a @libdir@

uninstall:
$(RM) -R $(INCLUDEDIR)
Expand Down
7 changes: 3 additions & 4 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,13 @@ LIBS=@LIBS@

OBJECTS=@OBJECTS@

TARGETS=lib@PACKAGE_NAME@-@BUILD@.a
LIBPTHREAD=lib@PACKAGE_NAME@.a

all:${TARGETS}
all:${LIBPTHREAD}

lib@PACKAGE_NAME@-@BUILD@.a: $(OBJECTS)
lib@PACKAGE_NAME@.a: $(OBJECTS)
${AR} ${LIBDIR}/$@ $(OBJECTS)
$(RANLIB) ${LIBDIR}/$@
cd ${LIBDIR} && $(LN_S) -f lib@PACKAGE_NAME@-@BUILD@.a lib@PACKAGE_NAME@.a

globber: clean
-$(RM) -R Makefile autom4te.cache config.log config.status
Expand Down

0 comments on commit e7f6930

Please sign in to comment.