Clean up .gitignore and Makefile cleaning up of temporary files.

Bump version in RPM spec file.
This commit is contained in:
Michael R Sweet 2020-10-01 09:17:32 -04:00
parent 371bb0c0a0
commit f1b2682ce1
No known key found for this signature in database
GPG Key ID: 999559A027815955
3 changed files with 30 additions and 28 deletions

44
.gitignore vendored
View File

@ -1,26 +1,22 @@
*.o
Makefile
autom4te.cache
/Makefile
/autom4te.cache
/config.h
config.log
config.status
libmxml.1.dylib
libmxml.a
libmxml.dylib
libmxml.sl
libmxml.sl.1
libmxml.so
libmxml.so.1
libmxml.so.1.6
mxml.pc
scratch
temp1.xmlfd
test.xmlfd
testmxml
test1.xml
vcnet/.vs
vcnet/Debug
vcnet/Release
vcnet/packages
xcode/mxml.xcodeproj/project.xcworkspace
xcode/mxml.xcodeproj/xcuserdata
/config.log
/config.status
/libmxml.1.dylib
/libmxml.a
/libmxml.dylib
/libmxml.so
/libmxml.so.1
/libmxml.so.1.6
/mxml.pc
/mxml1.dll
/scratch
/testmxml
/vcnet/.vs
/vcnet/Debug
/vcnet/Release
/vcnet/packages
/xcode/mxml.xcodeproj/project.xcworkspace
/xcode/mxml.xcodeproj/xcuserdata

View File

@ -101,10 +101,13 @@ clean:
echo Cleaning build files...
$(RM) $(OBJS) $(ALLTARGETS)
$(RM) mxml1.dll
$(RM) mxml1.lib
$(RM) libmxml.a
$(RM) libmxml.so
$(RM) libmxml.so.1
$(RM) libmxml.so.1.6
$(RM) libmxml.sl.1
$(RM) libmxml.1.dylib
$(RM) libmxml.dylib
#
@ -114,7 +117,10 @@ clean:
distclean: clean
echo Cleaning distribution files...
$(RM) config.cache config.log config.status
$(RM) Makefile config.h
$(RM) Makefile config.h mxml.pc
$(RM) test.xmlfd
$(RM) temp1.xml temp1.xmlfd temp1s.xml
$(RM) temp2.xml temp2s.xml
$(RM) -r autom4te*.cache
$(RM) *.bck *.bak
$(RM) -r clang
@ -281,7 +287,7 @@ testmxml: libmxml.a testmxml.o
fi
@if cmp test.xml test.xmlfd; then \
echo File descriptor test passed!; \
$(RM) test.xmlfd; \
$(RM) test.xmlfd temp1.xmlfd; \
else \
echo File descriptor test failed!; \
fi

View File

@ -11,7 +11,7 @@
Summary: Small XML file parsing library
Name: mxml
Version: 3.0
Version: 3.2
Release: 1
License: Apache 2.0
Group: Development/Libraries