mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 23:36:23 -05:00
rebuild on linux and fix lock dependencies.
This commit is contained in:
parent
88fbe6bdff
commit
de787262d3
17
Makefile
17
Makefile
@ -1,4 +1,4 @@
|
||||
# makefile for emacs, updated Sat, Jun 01, 2013 11:49:18 AM
|
||||
# makefile for emacs, updated Sat Jun 1 12:46:04 CST 2013
|
||||
|
||||
SRC=ansi.c basic.c bind.c buffer.c crypt.c display.c ebind.c eval.c exec.c file.c fileio.c globals.c ibmpc.c input.c isearch.c line.c lock.c main.c names.c pklock.c posix.c random.c region.c search.c spawn.c tcap.c termio.c utf8.c vmsvt.c vt52.c window.c word.c wrapper.c
|
||||
OBJ=ansi.o basic.o bind.o buffer.o crypt.o display.o ebind.o eval.o exec.o file.o fileio.o globals.o ibmpc.o input.o isearch.o line.o lock.o main.o names.o pklock.o posix.o random.o region.o search.o spawn.o tcap.o termio.o utf8.o vmsvt.o vt52.o window.o word.o wrapper.o
|
||||
@ -134,15 +134,15 @@ crypt.o: crypt.c crypt.h display.h estruct.h line.h utf8.h edef.h input.h
|
||||
display.o: display.c display.h estruct.h line.h utf8.h edef.h termio.h \
|
||||
version.h wrapper.h window.h
|
||||
ebind.o: ebind.c ebind.h basic.h bind.h edef.h estruct.h line.h utf8.h \
|
||||
buffer.h crypt.h eval.h exec.h file.h isearch.h main.h random.h \
|
||||
region.h search.h spawn.h window.h word.h
|
||||
buffer.h crypt.h eval.h exec.h file.h isearch.h main.h random.h region.h \
|
||||
search.h spawn.h window.h word.h
|
||||
eval.o: eval.c eval.h estruct.h line.h utf8.h basic.h bind.h edef.h \
|
||||
buffer.h display.h exec.h fileio.h input.h random.h search.h termio.h \
|
||||
version.h window.h
|
||||
exec.o: exec.c exec.h estruct.h line.h utf8.h buffer.h bind.h edef.h \
|
||||
display.h eval.h file.h input.h
|
||||
file.o: file.c file.h buffer.h estruct.h line.h utf8.h crypt.h display.h \
|
||||
edef.h fileio.h input.h main.h window.h
|
||||
edef.h fileio.h input.h lock.h main.h window.h
|
||||
fileio.o: fileio.c fileio.h crypt.h display.h estruct.h line.h utf8.h \
|
||||
edef.h
|
||||
globals.o: globals.c estruct.h line.h utf8.h edef.h
|
||||
@ -153,15 +153,16 @@ isearch.o: isearch.c isearch.h basic.h display.h estruct.h line.h utf8.h \
|
||||
edef.h input.h search.h
|
||||
line.o: line.c line.h utf8.h basic.h display.h estruct.h edef.h main.h \
|
||||
random.h
|
||||
lock.o: lock.c lock.h display.h estruct.h line.h utf8.h edef.h input.h
|
||||
lock.o: lock.c lock.h estruct.h line.h utf8.h display.h edef.h input.h \
|
||||
pklock.h
|
||||
main.o: main.c main.h crypt.h display.h estruct.h line.h utf8.h edef.h \
|
||||
input.h termio.h version.h basic.h bind.h buffer.h eval.h file.h \
|
||||
input.h termio.h version.h basic.h bind.h buffer.h eval.h file.h lock.h \
|
||||
random.h search.h
|
||||
names.o: names.c names.h basic.h bind.h edef.h estruct.h line.h utf8.h \
|
||||
buffer.h display.h eval.h exec.h crypt.h file.h isearch.h main.h \
|
||||
region.h random.h search.h spawn.h window.h word.h
|
||||
pklock.o: pklock.c pklock.h estruct.h line.h utf8.h edef.h
|
||||
posix.o: posix.c termio.h
|
||||
posix.o: posix.c termio.h estruct.h line.h utf8.h edef.h
|
||||
random.o: random.c random.h basic.h display.h estruct.h line.h utf8.h \
|
||||
edef.h input.h main.h search.h
|
||||
region.o: region.c region.h estruct.h line.h utf8.h display.h edef.h \
|
||||
@ -171,7 +172,7 @@ search.o: search.c search.h estruct.h line.h utf8.h basic.h display.h \
|
||||
spawn.o: spawn.c spawn.h buffer.h estruct.h line.h utf8.h display.h \
|
||||
edef.h file.h input.h main.h window.h
|
||||
tcap.o: tcap.c display.h estruct.h line.h utf8.h edef.h termio.h
|
||||
termio.o: termio.c termio.h estruct.h line.h utf8.h edef.h
|
||||
termio.o: termio.c termio.h
|
||||
utf8.o: utf8.c utf8.h
|
||||
vmsvt.o: vmsvt.c estruct.h line.h utf8.h edef.h
|
||||
vt52.o: vt52.c estruct.h line.h utf8.h edef.h
|
||||
|
1
file.c
1
file.c
@ -22,6 +22,7 @@
|
||||
#include "fileio.h"
|
||||
#include "input.h"
|
||||
#include "line.h"
|
||||
#include "lock.h"
|
||||
#include "main.h"
|
||||
#include "window.h"
|
||||
|
||||
|
2
lock.c
2
lock.c
@ -24,6 +24,8 @@
|
||||
static char *lname[NLOCKS]; /* names of all locked files */
|
||||
static int numlocks; /* # of current locks active */
|
||||
|
||||
static void lckerror(char *errstr) ;
|
||||
|
||||
/*
|
||||
* lockchk:
|
||||
* check a file for locking and add it to the list
|
||||
|
3
lock.h
3
lock.h
@ -1,13 +1,14 @@
|
||||
#ifndef _LOCK_H_
|
||||
#define _LOCK_H_
|
||||
|
||||
#include "estruct.h"
|
||||
|
||||
#if BSD | SVR4
|
||||
|
||||
int lockchk( char *fname) ;
|
||||
int lockrel( void) ;
|
||||
int lock( char *fname) ;
|
||||
int unlock( char *fname) ;
|
||||
void lckerror( char *errstr) ;
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user