From 03bfeedc5f4c04c20764c8a9a58bd02604f27b2c Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 27 Feb 2018 22:32:49 +0000 Subject: Created circular buffer --- Makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ff53f43..31ada08 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,17 @@ CC=gcc -CFLAGS=-g3 +CFLAGS=-fPIC -g3 make: - $(CC) -c buf.c - $(CC) $(CFLAGS) -fPIC -lc -ldl buf.c -shared -o libbuf.so + $(CC) $(CFLAGS) -c buf.c + $(CC) $(CFLAGS) -c buf_misc.c + $(CC) $(CFLAGS) -fPIC -lc -ldl buf_misc.o buf.o -shared -o libbuf.so -test: buf.c - $(CC) $(CFLAGS) buf.o test.c -o test +t: buf.c buf_misc.c + $(CC) $(CFLAGS) buf.o buf_misc.o test.c -o test + $(CC) $(CFLAGS) buf.o buf_misc.o test_circ.c -o test_circ leak: - valgrind --leak-check=full --track-origins=yes --log-file=log.txt ./test + valgrind --leak-check=full --track-origins=yes --log-file=log.txt ./test_circ clean: rm -rf *.so *.o -- cgit v1.2.3