summaryrefslogtreecommitdiffstats
path: root/contrib/less/Makefile.wnm
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2013-05-31 00:21:05 +0000
committerdelphij <delphij@FreeBSD.org>2013-05-31 00:21:05 +0000
commit77098f85c08ede9539128d07960caf1a0ef45ff4 (patch)
tree2cd158ca8c517908d57cea3b26710b7440226bd2 /contrib/less/Makefile.wnm
parent921b222c4dc2f554a67a1a7f4c4bf5d604e520b2 (diff)
downloadFreeBSD-src-77098f85c08ede9539128d07960caf1a0ef45ff4.zip
FreeBSD-src-77098f85c08ede9539128d07960caf1a0ef45ff4.tar.gz
Remove unused files.
Diffstat (limited to 'contrib/less/Makefile.wnm')
-rw-r--r--contrib/less/Makefile.wnm56
1 files changed, 0 insertions, 56 deletions
diff --git a/contrib/less/Makefile.wnm b/contrib/less/Makefile.wnm
deleted file mode 100644
index 7b33833..0000000
--- a/contrib/less/Makefile.wnm
+++ /dev/null
@@ -1,56 +0,0 @@
-# Makefile for less.
-# Windows 32 Visual C++ version
-
-#### Start of system configuration section. ####
-
-CC = cl
-
-# Normal flags
-CFLAGS = /nologo /ML /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /c
-LDFLAGS = /nologo /subsystem:console /incremental:no /machine:I386
-
-# 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 /machine:I386
-
-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 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 regexp.obj
-
-all: less.exe lesskey.exe
-
-# This is really horrible, but the command line is too long for
-# MS-DOS if we try to link ${OBJ}.
-less.exe: $(OBJ)
- -del lesskey.obj
- $(LD) $(LDFLAGS) *.obj $(LIBS) /out:$@
-
-lesskey.exe: lesskey.obj version.obj
- $(LD) $(LDFLAGS) lesskey.obj version.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
-
-
OpenPOWER on IntegriCloud