You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CC := gcc
|
|
CFLAGS := -Wall
|
|
LINKER_FLAGS = `sdl2-config --cflags --libs` -lxmp -lSDL2_image
|
|
|
|
test:
|
|
make clean
|
|
make build
|
|
|
|
build:
|
|
$(CC) $(CFLAGS) -o presentator presentator.c $(LINKER_FLAGS)
|
|
|
|
run:
|
|
./presentator
|
|
|
|
clean:
|
|
-rm presentator
|