Codebase list libsdl2-mixer / de691c9d-6793-4448-bf55-cbfe5c0b4cc8/main debian / examples / Makefile
de691c9d-6793-4448-bf55-cbfe5c0b4cc8/main

Tree @de691c9d-6793-4448-bf55-cbfe5c0b4cc8/main (Download .tar.gz)

Makefile @de691c9d-6793-4448-bf55-cbfe5c0b4cc8/mainraw · history · blame

# Makefile for playmus and playwave

CC = gcc
CFLAGS = $(shell sdl2-config --cflags) -Wall -O
LIBS = $(shell sdl2-config --libs) -lSDL2_mixer
EXE = playmus playwave

all: $(EXE)

playmus: playmus.c Makefile
	$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)

playwave: playwave.c Makefile
	$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)

clean:
	-rm *.o $(EXE)