Load samples and play the first one in pineapple/mod
[pineappletracker.git] / mod / Makefile
blobdeb9236dbdef0f82691ff497513a79dd6ae7e6ba
1 CC = gcc
2 CFLAGS = -std=c99 -Wall $(SDL_CFLAGS)
4 SDL_CFLAGS = $(shell pkg-config --cflags sdl)
6 LIBS = $(shell pkg-config --libs sdl)
8 main: main.c
9 $(CC) -o $@ $^ ${LIBS}