1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 23:55:50 +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,42 @@
### PortMixer library Makefile
OBJECTS = @objects@
LIBRARY = libportmixer.a
CC = @CC@
AR = @AR@
RANLIB = @RANLIB@
DEFS += @DEFS@
CFLAGS += @cflags@
CFLAGS += @include@
all : $(LIBRARY)
tests:
cd tests && $(MAKE) all
$(LIBRARY): $(OBJECTS)
$(AR) ruv $(LIBRARY) $(OBJECTS)
$(RANLIB) $(LIBRARY)
%.o : src/%.c
$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
clean :
-rm -f $(LIBRARY)
-rm -f $(OBJECTS)
distclean: clean
-$(RM) -rf config.log config.status autom4te.cache Makefile portmixer-v2
dist:
rm -rf portmixer-v2
mkdir portmixer-v2
cp -pr include src LICENSE.txt README.txt portaudio.patch Makefile.in configure.ac configure portmixer-v2
tar -zcf ../portmixer-v2.tar.gz portmixer-v2
strip :
strip $(LIBRARY)
ranlib $(LIBRARY)