Skip to content
Snippets Groups Projects
Commit a4b8ca22 authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

clean up assembler and preprocessor files if they are here too

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87467 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 780a5c59
No related branches found
No related tags found
No related merge requests found
...@@ -74,6 +74,7 @@ modules.link: ...@@ -74,6 +74,7 @@ modules.link:
clean:: clean::
rm -f *.so *.o *.oo *.eo *.eoo rm -f *.so *.o *.oo *.eo *.eoo
rm -f .*.o.d .*.oo.d rm -f .*.o.d .*.oo.d
rm -f *.s *.i
rm -f modules.link rm -f modules.link
install:: all install:: all
......
...@@ -40,6 +40,7 @@ uninstall: ...@@ -40,6 +40,7 @@ uninstall:
clean: clean:
rm -f *.so *.o look eagi-test eagi-sphinx-test rm -f *.so *.o look eagi-test eagi-sphinx-test
rm -f .*.o.d .*.oo.d rm -f .*.o.d .*.oo.d
rm -f *.s *.i
rm -f strcompat.c rm -f strcompat.c
ifneq ($(wildcard .*.d),) ifneq ($(wildcard .*.d),)
......
...@@ -15,3 +15,4 @@ $(LIB): $(OBJS) ...@@ -15,3 +15,4 @@ $(LIB): $(OBJS)
clean: clean:
rm -f $(LIB) *.o rm -f $(LIB) *.o
rm -f .*.o.d rm -f .*.o.d
rm -f *.s *.i
...@@ -18,3 +18,4 @@ $(LIB): $(OBJS) ...@@ -18,3 +18,4 @@ $(LIB): $(OBJS)
clean: clean:
rm -f $(LIB) *.o .*.d rm -f $(LIB) *.o .*.d
rm -f *.s *.i
...@@ -75,3 +75,4 @@ $(LIB): $(OBJ) ...@@ -75,3 +75,4 @@ $(LIB): $(OBJ)
clean: clean:
rm -f *.o $(LIB) .*.d rm -f *.o $(LIB) .*.d
rm -f *.s *.i
...@@ -47,6 +47,7 @@ clean-depend: ...@@ -47,6 +47,7 @@ clean-depend:
clean: clean:
rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS) rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS)
rm -f *.s *.i
ASTCFLAGS:=-Wall -D__DBINTERFACE_PRIVATE -I. -I.. -Iinclude -Ihash -Ibtree -Irecno $(ASTCFLAGS) ASTCFLAGS:=-Wall -D__DBINTERFACE_PRIVATE -I. -I.. -Iinclude -Ihash -Ibtree -Irecno $(ASTCFLAGS)
......
...@@ -177,6 +177,7 @@ clean : ...@@ -177,6 +177,7 @@ clean :
rm -f $(BGCSRCS:.c=.o_a) $(CCSRCS:.c=.o_a) rm -f $(BGCSRCS:.c=.o_a) $(CCSRCS:.c=.o_a)
rm -f $(BGCSRCS:.c=.o_s) $(CCSRCS:.c=.o_s) rm -f $(BGCSRCS:.c=.o_s) $(CCSRCS:.c=.o_s)
rm -f $(TCSRCS:.c=.o) $(TEST) rm -f $(TCSRCS:.c=.o) $(TEST)
rm -f *.s *.i
distclean : clean distclean : clean
rm -f config.cache config.log config.status config.h Makefile rm -f config.cache config.log config.status config.h Makefile
......
...@@ -58,6 +58,7 @@ uninstall: ...@@ -58,6 +58,7 @@ uninstall:
clean: clean:
rm -f *.o $(ALL_UTILS) check_expr rm -f *.o $(ALL_UTILS) check_expr
rm -f .*.o.d .*.oo.d rm -f .*.o.d .*.oo.d
rm -f *.s *.i
rm -f md5.c strcompat.c ast_expr2.c ast_expr2f.c pbx_ael.c pval.c rm -f md5.c strcompat.c ast_expr2.c ast_expr2f.c pbx_ael.c pval.c
rm -f aelparse.c aelbison.c conf2ael rm -f aelparse.c aelbison.c conf2ael
rm -f utils.c sha1.c astobj2.c hashtest2 rm -f utils.c sha1.c astobj2.c hashtest2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment