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
|
||||
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
|
||||
|
12
Makefile.in
12
Makefile.in
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user