view src/xxd/Make_bc5.mak @ 4057:a80af62d5e3b v7.3.783

updated for version 7.3.783 Problem: Crash when mark is not set. (Dominique Pelle) Solution: Check for NULL.
author Bram Moolenaar <bram@vim.org>
date Thu, 24 Jan 2013 21:00:20 +0100
parents 3fc0f57ecb91
children
line wrap: on
line source

# The most simplistic Makefile for Win32 (NT and Windows 95).
# Used for Borland C++.

!if ("$(BOR)"=="")
BOR = c:\bc5
!endif
!if ("$(BCC)"=="")
BCC = bcc32
!endif

xxd: xxd.exe

xxd.exe: xxd.c
	$(BCC) -I$(BOR)\include -L$(BOR)\lib -DWIN32 xxd.c $(BOR)\lib\wildargs.obj

clean:
	- del xxd.obj
	- del xxd.exe