Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update openbsd.gmk #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ BUILD
* linux26.gmk Linux 2.6 kernels using GNU tools
* mingw.gmk minGW http://www.MinGW.org using GNU tools.
* osf1.gmk OSF1 using GNU tools.
* openbsd.gmk OpenBSD using GNU tools.
* openbsd.gmk OpenBSD using base tools.
* openstep.mak Openstep 4.2 on NeXTstep (BSD 4.3).
* sunos5.gmak Sun Solaris 5.5/6/7/8/9/10 using GNU tools
* sunos5.mak Sun Solaris 5.6/7/8/9/10 native
Expand Down
8 changes: 4 additions & 4 deletions src/openbsd.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ INSTPROGFLAGS = -s -o root -g root -m 0775
# Local Definitions
CP = cp
RM = rm -f
CC = gcc
CC = cc
LD = $(CC)
STRIP = strip
INSTALL = install
Expand All @@ -54,7 +54,7 @@ NANOEMACS_DEFS= -D_NANOEMACS
LDDEBUG =
LDOPTIMISE =
LDFLAGS =
LIBS =
LIBS = -lz
CONSOLE_LIBS = -ltermcap
WINDOW_LIBS = $(MAKEWINLIBS) -L/usr/X11R6/lib -lX11
#
Expand Down Expand Up @@ -99,10 +99,10 @@ WINDOW_LIBS = $(MAKEWINLIBS) -L/usr/X11R6/lib -lX11
$(CC) $(CDEBUG) $(CDEFS) $(NANOEMACS_DEFS) $(CONSOLE_DEFS) $(WINDOW_DEFS) $(MAKECDEFS) -o $@ -c $<
#
# Source files
STDHDR = ebind.h edef.h eextrn.h efunc.h emain.h emode.h eprint.h \
STDHDR = bfs.h ebind.h edef.h eextrn.h efunc.h emain.h emode.h eprint.h \
esearch.h eskeys.h estruct.h eterm.h evar.h evers.h eopt.h \
ebind.def efunc.def eprint.def evar.def etermcap.def emode.def eskeys.def
STDSRC = abbrev.c basic.c bind.c buffer.c crypt.c dirlist.c display.c \
STDSRC = abbrev.c basic.c bfs.c bind.c buffer.c crypt.c dirlist.c display.c \
eval.c exec.c file.c fileio.c frame.c hilight.c history.c input.c \
isearch.c key.c line.c macro.c main.c narrow.c next.c osd.c \
print.c random.c regex.c region.c registry.c search.c spawn.c \
Expand Down