Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | # The most simplistic Makefile for Win32 using Microsoft Visual C++ |
2 | # (NT and Windows 95) | ||||
3 | |||||
4 | xxd: xxd.exe | ||||
5 | |||||
6 | xxd.exe: xxd.c | ||||
7 | cl /nologo -DWIN32 xxd.c /link setargv.obj | ||||
8 | |||||
9 | clean: | ||||
10 | - if exist xxd.obj del xxd.obj | ||||
11 | - if exist xxd.exe del xxd.exe |