cleanup bind & ebind dependencies to estruct & edef.

This commit is contained in:
Renaud 2013-05-31 14:27:49 +08:00
parent cae7222493
commit f210ed610b
4 changed files with 5 additions and 9 deletions

View File

@ -28,9 +28,9 @@ OBJ=basic.o bind.o buffer.o crypt.o display.o ebind.o eval.o exec.o \
termio.o window.o word.o names.o globals.o \
wrapper.o utf8.o
HDR=basic.h bind.h buffer.h crypt.h display.h edef.h efunc.h \
HDR=basic.h bind.h buffer.h crypt.h display.h ebind.h edef.h efunc.h \
estruct.h eval.h exec.h file.h fileio.h input.h isearch.h line.h \
lock.h main.h pklock.h random.h region.h search.h spawn.h \
lock.h main.h names.h pklock.h random.h region.h search.h spawn.h \
termio.h utf8.h version.h window.h word.h wrapper.h
# DO NOT ADD OR MODIFY ANY LINES ABOVE THIS -- make source creates them
@ -135,10 +135,11 @@ depend: ${SRC}
ansi.o: ansi.c estruct.h edef.h
basic.o: basic.c basic.h estruct.h edef.h
bind.o: bind.c bind.h estruct.h edef.h fileio.h
bind.o: bind.c bind.h ebind.h fileio.h names.h
buffer.o: buffer.c buffer.h estruct.h edef.h
crypt.o: crypt.c crypt.h display.h estruct.h edef.h input.h
display.o: display.c display.h estruct.h edef.h utf8.h version.h window.h
ebind.c: ebind.h
eval.o: eval.c eval.h estruct.h edef.h version.h fileio.h
exec.o: exec.c exec.h estruct.h edef.h
file.o: file.c file.h crypt.h estruct.h edef.h fileio.h
@ -149,7 +150,7 @@ isearch.o: isearch.c isearch.h estruct.h edef.h
line.o: line.c line.h estruct.h edef.h
lock.o: lock.c lock.h estruct.h edef.h
main.o: main.c main.h estruct.h crypt.h edef.h version.h
names.o: names.c estruct.h crypt.h edef.h line.h
names.o: names.c names.h crypt.h line.h
pklock.o: pklock.c pklock.h estruct.h
posix.o: posix.c termio.h estruct.h utf8.h
random.o: random.c random.h estruct.h edef.h

2
bind.c
View File

@ -15,8 +15,6 @@
#include "buffer.h"
#include "display.h"
#include "ebind.h"
#include "estruct.h"
#include "edef.h"
#include "exec.h"
#include "file.h"
#include "fileio.h"

View File

@ -12,7 +12,6 @@
#include "bind.h"
#include "buffer.h"
#include "crypt.h"
#include "estruct.h"
#include "eval.h"
#include "exec.h"
#include "file.h"

View File

@ -15,8 +15,6 @@
#include "bind.h"
#include "display.h"
#include "estruct.h"
#include "edef.h"
#include "exec.h"
#include "main.h"
#include "names.h"