xrdp/tests/memtest/Makefile

14 lines
150 B
Makefile
Raw Normal View History

2013-06-29 10:37:03 +08:00
OBJS = libmem.o memtest.o
#CFLAGS = -O2 -Wall
CFLAGS = -g
all: memtest
memtest: $(OBJS)
$(CC) -o memtest $(OBJS)
clean:
rm -f $(OBJS) librdp.a