view src/xxd/Make_djg.mak @ 7020:91852336e638

Added tag v7-4-826 for changeset db0328a2fa2a
author Bram Moolenaar <bram@vim.org>
date Thu, 13 Aug 2015 23:28:44 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

# The most simplistic Makefile, for DJGPP on MS-DOS

CFLAGS = -O2 -Wall

xxd.exe: xxd.c
	gcc $(CFLAGS) -s -o xxd.exe xxd.c -lpc

clean:
	del xxd.exe