view src/xxd/Make_bc5.mak @ 7848:798673834bab v7.4.1221

commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 31 14:36:58 2016 +0100 patch 7.4.1221 Problem: Including netbeans and channel support in small and tiny builds. Build fails with some interfaces. Solution: Only include these features in small build and above. Let configure fail if trying to enable an interface that won't build.
author Christian Brabandt <cb@256bit.org>
date Sun, 31 Jan 2016 14:45:04 +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