fix Allegro so it can be build with any 5.x version

This commit is contained in:
Juraj Michalek
2019-05-03 09:04:35 +02:00
parent d7699815cc
commit 230f84a9cb

View File

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