From a71794a21bc198974ff2bd144e0a372c28b7654a Mon Sep 17 00:00:00 2001 From: burg Date: Thu, 16 Sep 2004 21:56:23 +0000 Subject: Initial revision --- i/serialplot/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 i/serialplot/Makefile (limited to 'i/serialplot/Makefile') diff --git a/i/serialplot/Makefile b/i/serialplot/Makefile new file mode 100644 index 0000000..0599042 --- /dev/null +++ b/i/serialplot/Makefile @@ -0,0 +1,11 @@ +CFLAGS = $(shell sdl-config --cflags) -g -Wall +LDLIBS = $(shell sdl-config --libs) -lSDL_image -lefence +OBJECTS = BFont.o serialplot_sdl.o serialplot_io.o serialplot_RdMch.o + +all: serialplot + +serialplot: $(OBJECTS) serialplot.o + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) + +clean: + rm -f serialplot *.o -- cgit v1.2.3