blob: ba74b1808540175b4acc94f5d1f7859feae66ebe [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
Bram Moolenaar48f80c22010-02-24 15:08:27 +010015CC = gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +000016CFLAGS = -O2 -Wall -DWIN32 $(DEFINES)
17
18ifneq (sh.exe, $(SHELL))
19DEL = rm
20else
21DEL = del
22endif
23
24xxd.exe: xxd.c
Bram Moolenaar48f80c22010-02-24 15:08:27 +010025 $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
27clean:
28 -$(DEL) xxd.exe