1
2# by Jay Sorg, public domain
3# borland makefile
4
5OBJS = brushtest.obj
6
7CFLAGS = -O2
8LDFLAGS = -W
9
10all: brushtest.exe
11
12brushtest.exe: $(OBJS)
13	$(CC) -ebrushtest.exe $(LDFLAGS) $(OBJS)
14
15clean:
16	del /q $(OBJS) brushtest.exe *.tds
17