Skip to content

Commit e7f6930

Browse files
author
Herbert Koelman
committed
Merge branch 'iss-72' into develop
2 parents 02247ff + c8d0245 commit e7f6930

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Makefile.in

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ doxygen:
5454

5555
install:
5656
$(MKDIR) $(INCLUDEDIR)
57-
cd include/pthread && $(INSTALL) *.hpp *.h $(INCLUDEDIR)
58-
$(INSTALL) lib/lib@PACKAGE_NAME@-@[email protected] @libdir@
59-
cd ${LIBDIR} && $(LN_S) -f lib@PACKAGE_NAME@-@[email protected] lib@[email protected]
57+
$(INSTALL) include/pthread/*.hpp include/pthread/*.h $(INCLUDEDIR)
58+
$(INSTALL) lib/lib@[email protected] @libdir@
6059

6160
uninstall:
6261
$(RM) -R $(INCLUDEDIR)

src/Makefile.in

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,13 @@ LIBS=@LIBS@
3535

3636
OBJECTS=@OBJECTS@
3737

38-
TARGETS=lib@PACKAGE_NAME@-@BUILD@.a
38+
LIBPTHREAD=lib@[email protected]
3939

40-
all:${TARGETS}
40+
all:${LIBPTHREAD}
4141

42-
lib@PACKAGE_NAME@-@BUILD@.a: $(OBJECTS)
42+
lib@[email protected]: $(OBJECTS)
4343
${AR} ${LIBDIR}/$@ $(OBJECTS)
4444
$(RANLIB) ${LIBDIR}/$@
45-
cd ${LIBDIR} && $(LN_S) -f lib@PACKAGE_NAME@-@[email protected] lib@[email protected]
4645

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

0 commit comments

Comments
 (0)