Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame^] | 1 | # A very (if most the most) simplistic Makefile for OS/2 |
2 | |||||
3 | CC=gcc | ||||
4 | CFLAGS=-O2 -fno-strength-reduce -DOS2 | ||||
5 | |||||
6 | xxd.exe: xxd.c | ||||
7 | $(CC) $(CFLAGS) -s -o $@ $< | ||||
8 | |||||
9 | clean: | ||||
10 | - del xxd.o | ||||
11 | - del xxd.exe |