caudio/Examples/Tutorial1_2DSound/Makefile

8 lines
153 B
Makefile
Raw Normal View History

2010-02-20 09:11:18 +01:00
CC=g++
CFLAGS=-Wall
LDFLAGS=-L../../Source -lcAudio
OBJECT=main.o
all: $(OBJECT)
$(CC) $(OBJECT) -o ../../bin/linux-x86/Tutorial1_2DSound $(LDFLAGS)