1# 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
8
9# This was for an older compiler
10#    cl /nologo -DWIN32 xxd.c /link setargv.obj
11
12clean:
13     - if exist xxd.obj del xxd.obj
14     - if exist xxd.exe del xxd.exe
15