rdesktop/tests/brushtestMakefile

17 lines
244 B
Plaintext
Raw Normal View History

# by Jay Sorg, public domain
# borland makefile
OBJS = brushtest.obj
CFLAGS = -O2
LDFLAGS = -W
all: brushtest.exe
brushtest.exe: $(OBJS)
$(CC) -ebrushtest.exe $(LDFLAGS) $(OBJS)
clean:
del /q $(OBJS) brushtest.exe *.tds