From 51436586a7346041534c4da17f7c6c8e9ccb5c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20Holl=C3=B3s?= Date: Sun, 22 Nov 2020 15:50:00 +0100 Subject: [PATCH] put config.h dependency into the Makefile --- Makefile | 2 +- config.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2304c98..a12c4de 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,5 @@ TARGET=fiboBG SRC=main.c # DEBUG=-g DEBUG= -$(TARGET): main.c +$(TARGET): main.c config.h gcc -Wall -Wextra $(DEBUG) $(SRC) `pkg-config --cflags --libs cairo x11` -o $(TARGET) -lm diff --git a/config.h b/config.h index 98d46a3..a26ac01 100644 --- a/config.h +++ b/config.h @@ -1,4 +1,3 @@ - typedef struct _color { float red; float green;