mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-24 11:25:30 +00:00
Clean up .gitignore and Makefile cleaning up of temporary files.
Bump version in RPM spec file.
This commit is contained in:
parent
371bb0c0a0
commit
f1b2682ce1
44
.gitignore
vendored
44
.gitignore
vendored
@ -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
|
|
||||||
|
12
Makefile.in
12
Makefile.in
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user