blob: 3227f0c864d353c332acead9b3b0d253a6102244 [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
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007 cl /nologo -DWIN32 xxd.c
8
9# This was for an older compiler
10# cl /nologo -DWIN32 xxd.c /link setargv.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +000011
12clean:
13 - if exist xxd.obj del xxd.obj
14 - if exist xxd.exe del xxd.exe