1# A very (if most the most) simplistic Makefile for OS/2
2
3CC=gcc
4CFLAGS=-O2 -fno-strength-reduce -DOS2
5
6xxd.exe: xxd.c
7	$(CC) $(CFLAGS) -s -o $@ $<
8
9clean:
10	- del xxd.o
11	- del xxd.exe
12