mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
Remove efunc as dependencies.
This commit is contained in:
parent
04264b4d27
commit
b321dce49e
4
Makefile
4
Makefile
@ -148,8 +148,8 @@ input.o: input.c input.h estruct.h edef.h
|
||||
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 efunc.h edef.h ebind.h version.h
|
||||
names.o: names.c estruct.h crypt.h edef.h efunc.h line.h
|
||||
main.o: main.c main.h estruct.h crypt.h edef.h ebind.h version.h
|
||||
names.o: names.c estruct.h crypt.h edef.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
|
||||
|
1
basic.c
1
basic.c
@ -18,7 +18,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
#include "random.h"
|
||||
|
1
bind.c
1
bind.c
@ -16,7 +16,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "exec.h"
|
||||
#include "file.h"
|
||||
#include "fileio.h"
|
||||
|
1
buffer.c
1
buffer.c
@ -17,7 +17,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "file.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
|
1
eval.c
1
eval.c
@ -16,7 +16,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "exec.h"
|
||||
#include "fileio.h"
|
||||
#include "input.h"
|
||||
|
1
exec.c
1
exec.c
@ -17,7 +17,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "eval.h"
|
||||
#include "file.h"
|
||||
#include "input.h"
|
||||
|
1
file.c
1
file.c
@ -19,7 +19,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "fileio.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
|
1
input.c
1
input.c
@ -17,7 +17,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "exec.h"
|
||||
#include "main.h"
|
||||
#include "wrapper.h"
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
#include "search.h"
|
||||
|
1
line.c
1
line.c
@ -21,7 +21,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "main.h"
|
||||
#include "random.h"
|
||||
#include "utf8.h"
|
||||
|
1
lock.c
1
lock.c
@ -12,7 +12,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "input.h"
|
||||
|
||||
#if (FILOCK && BSD) || SVR4
|
||||
|
1
main.c
1
main.c
@ -67,7 +67,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h" /* Global structures and defines. */
|
||||
#include "edef.h" /* Global definitions. */
|
||||
#include "efunc.h" /* Function declarations and name table. */
|
||||
#include "ebind.h" /* Default key bindings. */
|
||||
#include "input.h"
|
||||
#include "termio.h"
|
||||
|
1
names.c
1
names.c
@ -14,7 +14,6 @@
|
||||
#include "crypt.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "file.h"
|
||||
#include "isearch.h"
|
||||
#include "line.h"
|
||||
|
1
pklock.c
1
pklock.c
@ -7,7 +7,6 @@
|
||||
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
|
||||
#if (FILOCK && BSD) || SVR4
|
||||
#include <sys/types.h>
|
||||
|
1
posix.c
1
posix.c
@ -24,7 +24,6 @@
|
||||
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "utf8.h"
|
||||
|
||||
/* Since Mac OS X's termios.h doesn't have the following 2 macros, define them.
|
||||
|
1
random.c
1
random.c
@ -15,7 +15,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
#include "main.h"
|
||||
|
1
region.c
1
region.c
@ -15,7 +15,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "line.h"
|
||||
#include "main.h"
|
||||
|
||||
|
1
search.c
1
search.c
@ -66,7 +66,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
#include "main.h"
|
||||
|
1
spawn.c
1
spawn.c
@ -15,7 +15,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "file.h"
|
||||
#include "input.h"
|
||||
#include "main.h"
|
||||
|
1
tcap.c
1
tcap.c
@ -26,7 +26,6 @@
|
||||
#include "display.h"
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "termio.h"
|
||||
|
||||
#if TERMCAP
|
||||
|
Loading…
Reference in New Issue
Block a user