1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
--- admin/Makefile.common 2001/07/17 05:16:52 1.118
+++ admin/Makefile.common 2001/07/29 13:58:27
@@ -92,22 +92,32 @@ cvs-clean:
pwd=`pwd` ;\
dirs=`find . -type d | grep -v CVS | sed -e "s#^./##"` ;\
for i in $$dirs; do \
- if test ! -d "$$pwd/$$i/CVS"; then \
- echo "D $$i" ;\
- rm -rf "$$pwd/$$i"; \
- continue; \
- fi ;\
- cd $$pwd/$$i ;\
- for f in * .*; do \
- if test ! -d "$$f"; then \
- if grep "^/$$f/" CVS/Entries > /dev/null; then \
- a="b"; \
- else \
- echo "F $$i/$$f"; \
- rm -f "$$pwd/$$i/$$f"; \
- fi; \
- fi ; \
- done; \
+ case "$$i" in \
+ debian) \
+ echo "Ignoring files in $$i"; \
+ ;; \
+ */HTML) \
+ echo "Ignoring files in $$i"; \
+ ;; \
+ *) \
+ if test ! -d "$$pwd/$$i/CVS"; then \
+ echo "D $$i" ;\
+ rm -rf "$$pwd/$$i"; \
+ continue; \
+ fi ;\
+ cd $$pwd/$$i ;\
+ for f in * .*; do \
+ if test ! -d "$$f"; then \
+ if grep "^/$$f/" CVS/Entries > /dev/null; then \
+ a="b"; \
+ else \
+ echo "F $$i/$$f"; \
+ rm -f "$$pwd/$$i/$$f"; \
+ fi; \
+ fi ; \
+ done; \
+ ;; \
+ esac; \
done
--- noatun-plugins/alarm/Makefile.am 2001/05/23 10:38:36 1.3
+++ noatun-plugins/alarm/Makefile.am 2001/07/29 13:58:27
@@ -4,7 +4,7 @@ lib_LTLIBRARIES = libnoatunwakeup.la
libnoatunwakeup_la_SOURCES = wakeup.cpp \
kminutespinbox.cpp
-libnoatunwakeup_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
+libnoatunwakeup_la_LDFLAGS = $(all_libraries) -module -no-undefined
libnoatunwakeup_la_LIBADD = $(LIB_KFILE) $(kde_libraries)/libnoatun.so -lm
libnoatunwakeup_la_METASOURCES = AUTO
--- noatun-plugins/luckytag/Makefile.am 2001/05/28 01:30:44 1.1.1.1
+++ noatun-plugins/luckytag/Makefile.am 2001/07/29 13:58:27
@@ -2,7 +2,7 @@ INCLUDES= -I$(kde_includes)/noatun $(all
lib_LTLIBRARIES = libnoatunluckytag.la
libnoatunluckytag_la_SOURCES = luckytag.cpp parsedmp3filename.cpp
-libnoatunluckytag_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
+libnoatunluckytag_la_LDFLAGS = $(all_libraries) -module -no-undefined
libnoatunluckytag_la_LIBADD = $(LIB_KFILE) -lnoatun
libnoatunluckytag_la_METASOURCES = AUTO
--- noatun-plugins/noatunmadness/Makefile.am 2001/06/10 10:39:33 1.3
+++ noatun-plugins/noatunmadness/Makefile.am 2001/07/29 13:58:27
@@ -2,7 +2,7 @@ INCLUDES= -I$(kde_includes)/noatun `sdl
lib_LTLIBRARIES = libnoatunmadness.la
libnoatunmadness_la_SOURCES = madness.cpp
-libnoatunmadness_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined `sdl-config --libs`
+libnoatunmadness_la_LDFLAGS = $(all_libraries) -module -no-undefined `sdl-config --libs`
libnoatunmadness_la_LIBADD = $(LIB_KFILE) -lnoatun -lm
libnoatunmadness_la_METASOURCES = AUTO
|