From a5790a73ebbe5b03b51bafe4dcf2aa07d9d48d42 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 15 Jan 2024 18:51:08 -0500 Subject: [PATCH] Remove cluster from examples/Makefile --- examples/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index 78637b9..578ee81 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -8,15 +8,12 @@ CFLAGS += -I$(INCLUDE_PATH) LDFLAGS = -L../src -lhexagram STATIC = ../src/libhexagram.a -EXAMPLES = view cluster svg +EXAMPLES = view svg RM = rm all: $(EXAMPLES) -cluster: cluster.c $(STATIC) - $(CC) $(CFLAGS) $< -o $@ $(STATIC) $(shell pkg-config --cflags --libs cairo x11 librsvg-2.0) -lXext -lm - svg: svg.c $(STATIC) $(CC) $(CFLAGS) $< -o $@ $(STATIC) $(shell pkg-config --cflags --libs cairo librsvg-2.0) -lm