clean up (and ignore) assembler and preprocessor intermediate files if any are created during the build

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@87463 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Kevin P. Fleming 18 years ago
parent bb778cb3b9
commit f0c0dfe1f1

@ -70,7 +70,7 @@ modules.link:
@for file in $(patsubst %,$(SUBDIR)/%,$(filter-out %.o,$^)); do echo "INPUT (../$${file})" >> $@; done
clean::
rm -f *.so *.o *.oo
rm -f *.so *.o *.oo *.s *.i
rm -f .*.o.d .*.oo.d
rm -f modules.link

@ -39,7 +39,7 @@ uninstall:
clean:
rm -f *.so *.o look eagi-test eagi-sphinx-test
rm -f .*.o.d .*.oo.d
rm -f .*.o.d .*.oo.d *.s *.i
rm -f strcompat.c
ifneq ($(wildcard .*.d),)

@ -17,4 +17,4 @@ $(LIB): $(OBJS)
$(CMD_PREFIX) $(RANLIB) $@
clean:
rm -f $(LIB) *.o .*.d
rm -f $(LIB) *.o .*.d *.s *.i

@ -74,4 +74,4 @@ $(LIB): $(OBJ)
$(CMD_PREFIX) $(RANLIB) $@
clean:
rm -f *.o $(LIB) .*.d
rm -f *.o $(LIB) .*.d *.s *.i

@ -46,7 +46,7 @@ $(PROG): db_dump185.o $(LIBDBSO)
clean-depend:
clean:
rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS)
rm -f $(LIBDB) $(LIBDBSO) $(OBJS) $(SHOBJS) *.s *.i
ASTCFLAGS:=-Wall -D__DBINTERFACE_PRIVATE -I. -I.. -Iinclude -Ihash -Ibtree -Irecno $(ASTCFLAGS)

@ -177,6 +177,7 @@ clean :
rm -f $(BGCSRCS:.c=.o_a) $(CCSRCS:.c=.o_a)
rm -f $(BGCSRCS:.c=.o_s) $(CCSRCS:.c=.o_s)
rm -f $(TCSRCS:.c=.o) $(TEST)
rm -f *.s *.i
distclean : clean
rm -f config.cache config.log config.status config.h Makefile

@ -55,7 +55,7 @@ uninstall:
for x in $(ALL_UTILS); do rm -f $$x $(DESTDIR)$(ASTSBINDIR)/$$x; done
clean:
rm -f *.o $(ALL_UTILS) check_expr
rm -f *.o $(ALL_UTILS) check_expr *.s *.i
rm -f .*.o.d .*.oo.d
rm -f md5.c strcompat.c ast_expr2.c ast_expr2f.c pbx_ael.c
rm -f aelparse.c aelbison.c

Loading…
Cancel
Save