view src/xxd/Make_bc5.mak @ 3995:c2ea289a5b7f

Added tag v7-3-752 for changeset ed936effb1f3
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Dec 2012 19:00:06 +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