put config.h dependency into the Makefile

This commit is contained in:
Roland Hollós 2020-11-22 15:50:00 +01:00
parent aba6487d1e
commit 51436586a7
2 changed files with 1 additions and 2 deletions

View File

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

View File

@ -1,4 +1,3 @@
typedef struct _color {
float red;
float green;