head	1.2;
access;
symbols
	perseant-exfatfs-base-20250801:1.2
	perseant-exfatfs-base-20240630:1.2
	perseant-exfatfs:1.2.0.2
	perseant-exfatfs-base:1.2
	LESS-643:1.1.1.1
	GREENWOODSOFTWARE:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2023.10.06.05.59.50;	author simonb;	state dead;
branches;
next	1.1;
commitid	sL9tGdJBA1fMOwHE;

1.1
date	2023.10.06.04.29.18;	author simonb;	state Exp;
branches
	1.1.1.1;
next	;
commitid	yiZvtGMlNK6njwHE;

1.1.1.1
date	2023.10.06.04.29.18;	author simonb;	state Exp;
branches;
next	;
commitid	yiZvtGMlNK6njwHE;


desc
@@


1.2
log
@Clean up fluffed cvs import :/.
@
text
@# Makefile for less.
# Windows 32 Visual C++ version

#### Start of system configuration section. ####

CC = cl

# Normal flags
CFLAGS = /nologo /W3 /EHsc /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /c 
LDFLAGS = /nologo /subsystem:console /incremental:no

# Debugging flags
#CFLAGS = /nologo /MDd /W3 /GX /Od /Gm /Zi /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /c
#LDFLAGS = /nologo /subsystem:console /incremental:yes /debug

LD = link
LIBS = user32.lib

#### End of system configuration section. ####

# This rule allows us to supply the necessary -D options
# in addition to whatever the user asks for.
.c.obj::
	$(CC) $(CFLAGS) $<

OBJ = \
	main.obj screen.obj brac.obj ch.obj charset.obj cmdbuf.obj \
	command.obj cvt.obj decode.obj edit.obj filename.obj forwback.obj \
	help.obj ifile.obj input.obj jump.obj lesskey_parse.obj line.obj linenum.obj \
	lsystem.obj mark.obj optfunc.obj option.obj opttbl.obj os.obj \
	output.obj pattern.obj position.obj prompt.obj search.obj signal.obj \
	tags.obj ttyin.obj version.obj xbuf.obj regexp.obj

all: less.exe lesskey.exe

less.exe: $(OBJ)
	$(LD) $(LDFLAGS) $** $(LIBS) /out:$@@

lesskey.exe: lesskey.obj lesskey_parse.obj version.obj xbuf.obj
	$(LD) $(LDFLAGS) lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(LIBS) /out:$@@

defines.h: defines.wn
	-del defines.h
	-copy defines.wn defines.h

$(OBJ): less.h defines.h funcs.h cmd.h

clean:
	-del *.obj 
	-del less.exe
	-del lesskey.exe


@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Import less-643.  Way to many changes and bugfixes over the last ten
years to list.  Look at src/external/bsd/less/dist/version.c for a
complete list of changes.
@
text
@@
