rdesktop/tests/brushtestMakefile
Jay Sorg a42c5895f6 added brushtest
git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1483 423420c4-83ab-492f-b58f-81f9feb106b5
2008-11-02 03:55:00 +00:00

17 lines
244 B
Plaintext

# 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