diff options
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 4c31571dca..730fdddf3d 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -311,7 +311,7 @@ cleandir: clean rm -f .depend tags proto: - $(AWK) -f mkproto.awk `echo $(PROTOOBJ) | sed -e 's/\.o/\.c/g' | tr ' ' '\n' | sort | fgrep -v "ubiqx" | uniq` > proto.h + $(AWK) -f mkproto.awk `echo $(PROTOOBJ) | tr ' ' '\n' | sed -e 's/\.o/\.c/g' | sort | fgrep -v "ubiqx" | uniq` > proto.h etags: etags `find . -name "*.[ch]"` |