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 *.o
Makefile /Makefile
autom4te.cache /autom4te.cache
/config.h /config.h
config.log /config.log
config.status /config.status
libmxml.1.dylib /libmxml.1.dylib
libmxml.a /libmxml.a
libmxml.dylib /libmxml.dylib
libmxml.sl /libmxml.so
libmxml.sl.1 /libmxml.so.1
libmxml.so /libmxml.so.1.6
libmxml.so.1 /mxml.pc
libmxml.so.1.6 /mxml1.dll
mxml.pc /scratch
scratch /testmxml
temp1.xmlfd /vcnet/.vs
test.xmlfd /vcnet/Debug
testmxml /vcnet/Release
test1.xml /vcnet/packages
vcnet/.vs /xcode/mxml.xcodeproj/project.xcworkspace
vcnet/Debug /xcode/mxml.xcodeproj/xcuserdata
vcnet/Release
vcnet/packages
xcode/mxml.xcodeproj/project.xcworkspace
xcode/mxml.xcodeproj/xcuserdata

View File

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

View File

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