# This is the makefile for ne. The standard (default), noposix, debug, debug noposix,
# termcap and termcapnoposix targets build the obviously varied versions of the program.
# You can try standard, noposix, termcap and termcapnoposix if you get errors from the compiler.
# Another good idea if you are using gcc is to try OPTS=-ansi.

GLOBALDIR     = /usr/lib/ne

PROGRAM       = ne

CC	      = cc

LIBS	      = -lcurses

OBJS	      = actions.o \
		buffer.o \
		clips.o \
		cm.o \
		command.o \
		display.o \
		edit.o \
		errors.o \
		exec.o \
		hash.o \
		help.o \
		input.o \
		inputclass.o \
		keys.o \
		menu.o \
		names.o \
		navigation.o \
		ne.o \
		prefs.o \
		regex.o \
		request.o \
		search.o \
		signals.o \
		streams.o \
		support.o \
		term.o \
		undo.o


TERMCAPOBJS   = tparam.o \
		info2cap.o \
		termcap.o

standard:
	make $(PROGRAM) CFLAGS="-O3 -DNODEBUG -D_POSIX_C_SOURCE=199506L $(OPTS)" LDFLAGS=-s LIBS="$(LIBS)"

noposix:
	make $(PROGRAM) CFLAGS="-O3 -DNODEBUG $(OPTS)" LDFLAGS=-s LIBS="$(LIBS)"

debug:
	make $(PROGRAM) CFLAGS="-g -Wall -D_POSIX_C_SOURCE=199506L $(OPTS)" LDFLAGS=-g LIBS="$(LIBS)"
	
debugnoposix:
	make $(PROGRAM) CFLAGS=-g LDFLAGS=-g LIBS="$(LIBS)"
	
termcap:
	make $(PROGRAM)t CFLAGS="-O3 -DTERMCAP -DNODEBUG -D_POSIX_C_SOURCE=199506L $(OPTS)" LDFLAGS=-s LIBS=""

termcapd:
	make $(PROGRAM)t CFLAGS="-g -DTERMCAP -D_POSIX_C_SOURCE=199506L $(OPTS)" LDFLAGS=-g LIBS=""

termcapnoposix:
	make $(PROGRAM)t CFLAGS="-O3 -DTERMCAP -DNODEBUG $(OPTS)" LDFLAGS=-s LIBS=""

ansi:
	make $(PROGRAM)t CFLAGS="-O3 -DTERMCAP -DANSI -DNODEBUG -D_POSIX_C_SOURCE=199506L $(OPTS)" LDFLAGS=-s LIBS=""

ansid:
	make $(PROGRAM)t CFLAGS="-g -DTERMCAP -DANSI -D_POSIX_C_SOURCE=199506L $(OPTS)" LIBS=""

ansinoposix:
	make $(PROGRAM)t CFLAGS="-g -DTERMCAP -DANSI -DNODEBUG $(OPTS)" LDFLAGS=-s LIBS=""


$(PROGRAM):	$(OBJS)
		$(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $(PROGRAM)

$(PROGRAM)t:	$(OBJS) $(TERMCAPOBJS)
		$(CC) $(LDFLAGS) $(OBJS) $(TERMCAPOBJS) $(LIBS) -o $(PROGRAM)

clean:
	rm -f *.o core

really-clean: clean
	rm -f ne

###

ne.h: enums.h

enums.h names.c names.h hash.c hash.h help.c help.h: ne.texinfo
	makeinfo -D autohelp ne.texinfo
	perl info2src.pl
	rm -f ne.info*

actions.o: ne.h	keycodes.h names.h errors.h protos.h version.h

buffer.o: ne.h keycodes.h names.h errors.h protos.h

clips.o: ne.h keycodes.h names.h errors.h protos.h

cm.o: cm.h

command.o: ne.h keycodes.h names.h errors.h protos.h help.h hash.h

display.o: ne.h keycodes.h names.h errors.h protos.h termchar.h

edit.o: ne.h keycodes.h names.h errors.h protos.h

errors.o: errors.h

exec.o: ne.h keycodes.h names.h errors.h protos.h

hash.o: hash.h

info2cap.o: info2cap.c info2cap.h

input.o: ne.h keycodes.h names.h errors.h protos.h

inputclass.o: ne.h keycodes.h names.h errors.h protos.h

keys.o: ne.h keycodes.h names.h errors.h protos.h

menu.o: ne.h keycodes.h names.h errors.h protos.h

navigation.o: ne.h keycodes.h names.h errors.h protos.h

ne.o: ne.h keycodes.h names.h errors.h protos.h version.h regex.h

prefs.o: ne.h keycodes.h names.h errors.h protos.h

regex.o: regex.h regex.c
	$(CC) $(CFLAGS) -DREGEX_MALLOC -DSTDC_HEADERS -c regex.c

request.o: ne.h keycodes.h names.h errors.h protos.h

search.o: ne.h keycodes.h names.h errors.h protos.h regex.h

signals.o: ne.h keycodes.h names.h errors.h protos.h

streams.o: ne.h keycodes.h names.h errors.h protos.h

support.o: ne.h keycodes.h names.h errors.h protos.h support.c
	$(CC) $(CFLAGS) -DGLOBALDIR=\"$(GLOBALDIR)\" -c support.c

term.o: termchar.h cm.h

termcap.o: termcap.c termcap.h

tparam.o: tparam.c termcap.h
	$(CC) $(CFLAGS) -DNO_ARG_ARRAY -c tparam.c

undo.o: ne.h keycodes.h names.h errors.h protos.h
