CC = gcc.exe
CFLAGS = -Wall -O2

ODIR=\rsxwdk\libsrc\bldall
VPATH=.;$(ODIR)

.c.o:
	$(CC) -c $(CFLAGS) -o $(ODIR)\$*.o $<

SOUND = \
	sound001.o \
	sound002.o \
	sound003.o \
	sound004.o \
	sound005.o \
	sound006.o \
	sound007.o \
	sound008.o \
	sound009.o \
	sound010.o \
	sound011.o \
	sound012.o \
	sound013.o \
	sound014.o \
	sound015.o \
	sound016.o \


sound: $(SOUND)
