6b8afe4d37
SBlaster/Adlib/ProAudio Spectrum/Gravis/etc cards. This is a BETA test driver, please test it and get back to me!
17 lines
272 B
Makefile
17 lines
272 B
Makefile
all: gustest gusload gmod midithru
|
|
|
|
gustest: gustest.c
|
|
$(CC) -o gustest gustest.c -lm
|
|
|
|
gusload: gusload.c
|
|
$(CC) -o gusload gusload.c
|
|
|
|
gmod: gmod.c
|
|
$(CC) -o gmod gmod.c
|
|
|
|
midithru: midithru.c
|
|
$(CC) -o midithru midithru.c
|
|
|
|
clean:
|
|
rm -f gusload gustest gmod midithru *.o
|