1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 08:05:52 +01:00

Move library tree where it belongs

This commit is contained in:
ra
2010-01-24 09:19:39 +00:00
parent e74978ba77
commit 58caf78a86
6020 changed files with 2790154 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
all: px_test
CFLAGS = -g -Wall -O -I../../portaudio/pa_common -I../px_common
px_test: px_test.o px_unix_oss.o ../px_common/portmixer.h
gcc -g -o px_test px_test.o px_unix_oss.o -lm \
-L../../portaudio/pa_unix_oss -lportaudio -lpthread
px_test.o: px_test.c ../px_common/portmixer.h
gcc $(CFLAGS) -c px_test.c
px_unix_oss.o: ../px_unix_oss/px_unix_oss.c ../px_common/portmixer.h
gcc $(CFLAGS) -c ../px_unix_oss/px_unix_oss.c