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;