diff options
| author | foswret | 2026-05-22 11:52:34 -0500 |
|---|---|---|
| committer | foswret | 2026-05-22 11:52:34 -0500 |
| commit | 924ca70a4006abbffc8f43f27c4f64c8fc517a08 (patch) | |
| tree | f4926e53b915bdfa9237c7de73d5b59872e48f5e /Makefile | |
| parent | 04fc01ab521abf48cede1e64563fd6276e781b24 (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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |
