Codebase list libsdl2-mixer / 1cf81e4b-32aa-4bef-a02a-e9828ed5d19d/main debian / examples / Makefile
1cf81e4b-32aa-4bef-a02a-e9828ed5d19d/main

Tree @1cf81e4b-32aa-4bef-a02a-e9828ed5d19d/main (Download .tar.gz)

Makefile @1cf81e4b-32aa-4bef-a02a-e9828ed5d19d/main

1deddb0
 
 
 
fcc0389
1deddb0
 
 
 
 
 
 
 
 
 
 
 
# 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)