1# The most simplistic Makefile, for DJGPP on MS-DOS
2
3CFLAGS = -O2 -Wall
4
5xxd.exe: xxd.c
6	gcc $(CFLAGS) -s -o xxd.exe xxd.c -lpc
7
8clean:
9	del xxd.exe
10