summaryrefslogtreecommitdiff
path: root/src/xxd/Make_djg.mak
blob: f6eed31305438d162b34a90dc39d0dcb82cca0c7 (plain)
1
2
3
4
5
6
7
8
9
# 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