Built SDL2_image and _mixer static
This commit is contained in:
14
libsdl2_image/debian/examples/Makefile
Normal file
14
libsdl2_image/debian/examples/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
# Makefile for showimage
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = $(shell sdl2-config --cflags) -Wall -O
|
||||
LIBS = $(shell sdl2-config --libs) -lSDL2_image
|
||||
EXE = showimage
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
showimage: showimage.c Makefile
|
||||
$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)
|
||||
|
||||
clean:
|
||||
-rm *.o $(EXE)
|
Reference in New Issue
Block a user