aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfoswret2026-05-22 11:52:34 -0500
committerfoswret2026-05-22 11:52:34 -0500
commit924ca70a4006abbffc8f43f27c4f64c8fc517a08 (patch)
treef4926e53b915bdfa9237c7de73d5b59872e48f5e /Makefile
parent04fc01ab521abf48cede1e64563fd6276e781b24 (diff)
draw_month_grid() doesn't use dimension struct anymore. create generate extents structs for month, paper, and day
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 91144ab..7b7255c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,13 @@ VERSION = 0.0
PREFIX = /usr/local
CC = cc
DIR = src
-OBJS = $(DIR)/calp.o $(DIR)/draw.o $(DIR)/date.o $(DIR)/image.o $(DIR)/ezini.o
+OBJS = $(DIR)/calp.o $(DIR)/draw.o $(DIR)/date.o $(DIR)/image.o
.PHONY: clean all install
TARGET = calp
-CFLAGS = `pkgconf --cflags pangocairo MagickWand` -O2 -g -Wall -Werror -Wextra -Winit-self -Wuninitialized -pedantic
-LFLAGS = `pkgconf --libs pangocairo MagickWand` -lm
+CFLAGS = `pkgconf --cflags pangocairo` -O2 -g -Wall -Werror -Wextra -Winit-self -Wuninitialized -pedantic
+LFLAGS = `pkgconf --libs pangocairo` -lm
all: $(TARGET)