Move test program removal on distclean to mpcommon.mak.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22802 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-03-24 15:03:57 +00:00
parent 2d3e863777
commit 83470e26c3
4 changed files with 1 additions and 10 deletions

View File

@ -14,6 +14,3 @@ include ../mpcommon.mak
test: test.c ../osdep/libosdep.a $(LIBNAME_COMMON)
$(CC) $(CFLAGS) -o $@ $^ -lm
distclean::
rm -f test

View File

@ -36,9 +36,6 @@ test: pci.o
clean::
rm -f *.so *.so.* pci_*.c pci_*.h pci.db
distclean::
rm -f test
dep depend:: pci_names.c
install:

View File

@ -18,6 +18,3 @@ decode_i586.o: CFLAGS += -fomit-frame-pointer
%: %.c $(LIBNAME_COMMON) ../libvo/aclib.o ../mp_msg-mencoder.o ../cpudetect.o ../osdep/getch2.o
$(CC) $(CFLAGS) -o $@ $^ -ltermcap -lm
distclean::
rm -f test test2

View File

@ -28,7 +28,7 @@ clean::
rm -f *.o *.a *~
distclean:: clean
rm -f .depend
rm -f .depend test test2
dep depend::
$(CC) -MM $(CFLAGS) $(SRCS_COMMON) $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend