view src/xxd/Make_bc5.mak @ 13500:8579d5f3da4b

Added tag v8.0.1623 for changeset 661394686fd844eb25e65dfd53dd672d408332a1
author Christian Brabandt <cb@256bit.org>
date Tue, 20 Mar 2018 17:45:08 +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