blob: 0c9438aa1eb45779dd0444b33e1beed7b2942321 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# The most simplistic Makefile for Win32 using Microsoft Visual C++
2# (NT and Windows 95)
3
4xxd: xxd.exe
5
6xxd.exe: xxd.c
7 cl /nologo -DWIN32 xxd.c /link setargv.obj
8
9clean:
10 - if exist xxd.obj del xxd.obj
11 - if exist xxd.exe del xxd.exe