Skip to content

Commit

Permalink
Modified to check for existence of lib and include dirs before
Browse files Browse the repository at this point in the history
attempting to create them.
  • Loading branch information
ljexplore committed Jun 21, 2007
1 parent 4106b41 commit e8597bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thirdparty/xmlParser_2.22_bsd/makefile
Expand Up @@ -57,9 +57,9 @@ xmlTestUnicode : xmlParser.cpp xmlParser.h xmlTestUnicode.cpp

#added by Todd R. Templeton <ttemplet@email.arc.nasa.gov>, 03/08/2007
lib : xmlParser.cpp xmlParser.h
mkdir include
@[ -d include ] || (set -x; mkdir include)
cp xmlParser.h include
mkdir lib
@[ -d lib ] || (set -x; mkdir lib)
$(GPP) -fPIC -c -Wall -DXML_NO_WIDE_CHAR -o xmlParser.o \
xmlParser.cpp
ar rcs lib/libxmlparser.a xmlParser.o
Expand Down

0 comments on commit e8597bf

Please sign in to comment.