blob: 4f446223e7d54d9c06a4febf2c76611c29dda959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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
|