blob: f04b7bfde02e5b42b019e01d4d4b05b47308e6f2 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# The most simplistic Makefile, for Cygnus gcc on MS-DOS
2
3ifndef USEDLL
4USEDLL = no
5endif
6
7ifeq (yes, $(USEDLL))
8DEFINES =
9LIBS = -lc
10else
11DEFINES = -mno-cygwin
12LIBS =
13endif
14
15CFLAGS = -O2 -Wall -DWIN32 $(DEFINES)
16
17ifneq (sh.exe, $(SHELL))
18DEL = rm
19else
20DEL = del
21endif
22
23xxd.exe: xxd.c
24 gcc $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS)
25
26clean:
27 -$(DEL) xxd.exe