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
|
VERSION = 1.4
PACKAGE = aoeui-$(VERSION)
SRCS = main.c mem.c die.c display.c text.c file.c locus.c buffer.c \
undo.c utf8.c window.c util.c clip.c mode.c search.c \
child.c bookmark.c help.c find.c tags.c tab.c fold.c macro.c \
keyword.c
HDRS = all.h buffer.h mode.h text.h locus.h utf8.h display.h \
window.h util.h clip.h macro.h
RELS = $(SRCS:.c=.o)
INST_DIR = $(DESTDIR)/usr
CFLAGS = -Wall -Wno-parentheses \
-Wpointer-arith -Wcast-align -Wwrite-strings -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations
# -Werror
# Uncomment this line if you want to develop aoeui yourself with exuberant-ctags
# CTAGS = exuberant-ctags
CTAGS = ctags
STRINGIFY = sed 's/\\/\\\\/g;s/"/\\"/g;s/^/"/;s/$$/\\n"/'
default: optimized aoeui.1 asdfg.1
aoeui: $(RELS) libs
$(CC) $(CFLAGS) -o $@ $(RELS) `cat libs`
$(RELS): $(HDRS)
help.o: aoeui.help asdfg.help
aoeui.help: help.m4
m4 help.m4 | $(STRINGIFY) >$@
asdfg.help: help.m4
m4 -D ASDFG help.m4 | $(STRINGIFY) >$@
libs:
if [ .`uname -s` = .Linux ]; then echo -lutil; fi >$@
aoeui.1.gz: aoeui.1
gzip -9 -c aoeui.1 >$@
asdfg.1.gz: asdfg.1
gzip -9 -c asdfg.1 >$@
aoeui.1.html: aoeui.1
man2html aoeui.1 >$@
asdfg.1.html: asdfg.1
man2html asdfg.1 >$@
aoeui.1: aoeui.1.m4
m4 aoeui.1.m4 >$@
asdfg.1: aoeui.1.m4
m4 -D ASDFG aoeui.1.m4 >$@
optimized:
$(MAKE) CFLAGS="-O3 $(CFLAGS)" aoeui
debug: clean
$(MAKE) CFLAGS="-g -O0 $(CFLAGS)" aoeui
profile: clean
$(MAKE) CFLAGS="-pg $(CFLAGS)" LIBS="$(LIBS) -pg" aoeui
TAGS: $(SRCS) $(HDRS)
$(CTAGS) -x $(SRCS) $(HDRS) >$@
install: aoeui aoeui.1.gz asdfg.1.gz
install -d $(INST_DIR)/bin
install -d $(INST_DIR)/share/aoeui
install -d $(INST_DIR)/share/man/man1
install aoeui $(INST_DIR)/bin
ln -nf $(INST_DIR)/bin/aoeui $(INST_DIR)/bin/asdfg
install *.txt $(INST_DIR)/share/aoeui
install *.1.gz $(INST_DIR)/share/man/man1
clean:
rm -f *.o *.help libs core gmon.out screenlog.*
clobber: clean
rm -f aoeui TAGS *.1 *.1.gz *.1.html unicode
spotless: clobber
rm -f *~ *.tgz
release: spotless
rm -rf .tar $(PACKAGE) $(PACKAGE).tgz
mkdir .tar
find . | egrep -v '/\.' | egrep -v '[~#]' | cpio -o | (cd .tar; cpio -id)
mv .tar $(PACKAGE)
ls -CF $(PACKAGE)
tar czf $(PACKAGE).tgz $(PACKAGE)
rm -rf $(PACKAGE)
|