From 230f84a9cbe5e1056ffff2d5d6909cd20904aed7 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Fri, 3 May 2019 09:04:35 +0200 Subject: [PATCH] fix Allegro so it can be build with any 5.x version --- allegro/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/allegro/Makefile b/allegro/Makefile index 64f3c59..75b4d65 100644 --- a/allegro/Makefile +++ b/allegro/Makefile @@ -3,8 +3,8 @@ EXAMPLE_OBJECTS_01 = example-01.o EXAMPLE_OBJECTS_02 = example-02.o EXAMPLE_OBJECTS_03 = example-03.o -CFLAGS = `pkg-config --cflags allegro-5.0 allegro_image-5.0` -LDADD = `pkg-config --libs allegro-5.0 allegro_image-5.0` +CFLAGS = `pkg-config --cflags allegro-5 allegro_image-5` +LDADD = `pkg-config --libs allegro-5 allegro_image-5` all: example-01 example-02 example-03