diff options
author | Rob Landley | 2006-06-16 15:08:59 +0000 |
---|---|---|
committer | Rob Landley | 2006-06-16 15:08:59 +0000 |
commit | 1449a2014a4e715a7a52b27caec528a9c802fa5f (patch) | |
tree | 281bba4feed27caadd90981d70e713caedbf15f2 /patches/cross-reference.synopsis.diff | |
parent | 747041955ed38fb14be3e5d0c3a946cfa74bc15e (diff) | |
download | busybox-1449a2014a4e715a7a52b27caec528a9c802fa5f.zip busybox-1449a2014a4e715a7a52b27caec528a9c802fa5f.tar.gz |
This directory was fallout from the great feature freeze of 2003, which led
up to the 1.00 release. I just moved what was left of it to
http://busybox.net/~landley/pending because it does _not_ belong in the
tree anymore.
Diffstat (limited to 'patches/cross-reference.synopsis.diff')
-rw-r--r-- | patches/cross-reference.synopsis.diff | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/patches/cross-reference.synopsis.diff b/patches/cross-reference.synopsis.diff deleted file mode 100644 index bc45366..0000000 --- a/patches/cross-reference.synopsis.diff +++ /dev/null @@ -1,31 +0,0 @@ -Index: Makefile -=================================================================== ---- Makefile (revision 15403) -+++ Makefile (working copy) -@@ -473,7 +473,7 @@ clean: - libbusybox.so* \ - .config.old busybox busybox_unstripped - - rm -r -f _install testsuite/links -- - find . -name .\*.flags -o -name \*.o -o -name \*.om \ -+ - find . -name .\*.flags -o -name \*.o -o -name \*.om -o -name \*.syn \ - -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f - - distclean: clean -@@ -503,6 +503,17 @@ release: distclean #doc - tags: - ctags -R . - -+# documentation, cross-reference -+# Modern distributions already ship synopsis packages (e.g. debian) -+# If you have an old distribution go to http://synopsis.fresco.org/ -+hdr := $(wildcard $(patsubst %,%/*.h,$(SRC_DIRS))) -+syn := $(patsubst %.h, %.syn, $(hdr)) -+ -+%.syn: %.h -+ synopsis -p C -l Comments.SSDFilter,Comments.Previous $(INCS) -Wp,verbose,debug,preprocess,cppflags="'$(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) $(APPLETS_DEFINE) $(BUSYBOX_DEFINE)'" -o $@ $< -+html: $(syn) -+ synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^ -+ - - endif # ifeq ($(skip-makefile),) - |