Remove cluster from examples/Makefile

This commit is contained in:
XANTRONIX Development 2024-01-15 18:51:08 -05:00
parent 9076449ee2
commit a5790a73eb

View file

@ -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