summaryrefslogtreecommitdiffstats
path: root/tests/memtest/Makefile
blob: c0310ecea79d1a5172ad03f0c07aafb8f0a99834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

OBJS = libmem.o memtest.o

#CFLAGS = -O2 -Wall
CFLAGS = -g

all: memtest

memtest: $(OBJS)
	$(CC) -o memtest $(OBJS)

clean:
	rm -f $(OBJS) librdp.a