view src/xxd/Make_djg.mak @ 6508:e1874a4524f8 v7.4.581

updated for version 7.4.581 Problem: Compiler warnings for unitinialized variables. (John Little) Solution: Initialize the variables.
author Bram Moolenaar <bram@vim.org>
date Sun, 18 Jan 2015 14:08:56 +0100
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