Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-02-03 22:03:10 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-02-03 22:03:10 +0300
commitb9f0e330e45cf3045b42bfd14b3dd00f85ebbae3 (patch)
tree8c0dae5e02e2b4f59becd2c47e17ca75bcac8fc6
parentd2913a62b93b6b3bcaf4c152ac1bfecedcbaea84 (diff)
Makefile deps fix
-rw-r--r--Makefile.draft6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.draft b/Makefile.draft
index 39ad4af6..33b665c7 100644
--- a/Makefile.draft
+++ b/Makefile.draft
@@ -70,7 +70,7 @@ OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(SRCS_C))
TESTOPUS_SRCS_C = src/test_opus.c
TESTOPUS_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(TESTOPUS_SRCS_C))
-LIBS = $(LIB_NAME) m
+LIBS = m
LDLIBDIRS = ./
@@ -84,8 +84,8 @@ lib: $(TARGET)
$(TARGET): $(OBJS)
$(ARCHIVE.cmdline)
-test_opus$(EXESUFFIX): $(TESTOPUS_OBJS)
+test_opus$(EXESUFFIX): $(TESTOPUS_OBJS) $(TARGET)
$(LINK.o.cmdline)
clean:
- rm -f test_opus libopus.a $(OBJS)
+ rm -f test_opus$(EXESUFFIX) $(TARGET) $(OBJS) $(TESTOPUS_OBJS)