Mercurial > vim
view src/xxd/Make_ming.mak @ 7495:8407aae08d67
Added tag v7.4.1049 for changeset b4419a42ac324ec39436a1594f844650529590e3
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 04 Jan 2016 13:00:04 +0100 |
parents | 1b26748fc911 |
children | a82b2d79e61b |
line wrap: on
line source
# The most simplistic Makefile, for MinGW gcc on MS-DOS ifndef USEDLL USEDLL = no endif ifeq (yes, $(USEDLL)) DEFINES = LIBS = -lc else DEFINES = LIBS = endif CC = gcc CFLAGS = -O2 -Wall -DWIN32 $(DEFINES) ifneq (sh.exe, $(SHELL)) DEL = rm else DEL = del endif xxd.exe: xxd.c $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) clean: -$(DEL) xxd.exe