Index: Makefile |
diff --git a/Makefile b/Makefile |
index b4a65f623ef6836818fd0820f7cce0ec9b64133f..31f192e0930f89429729ca60de1ac3de7a07f97a 100644 |
--- a/Makefile |
+++ b/Makefile |
@@ -24,7 +24,7 @@ endif |
LIBS += -lrt -lm -lpthread -lncurses |
INC += -I. |
-name := $(PN) #$(basename $(notdir $(PWD))) |
+name := $(basename $(notdir $(PWD))) |
target := $(shell uname -m) |
objdir :=.$(target) |
sources := $(wildcard *.c) |
@@ -40,8 +40,6 @@ CFLAGS+=-g -Wall -Wstrict-prototypes -Werror \ |
-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \ |
$(.INCLUDES) $(INC) \ |
-DESTDIR ?= $(bin) |
- |
$(objdir)/%.o : %.c Makefile |
@ mkdir -p $(objdir) |
$(CC) $(CFLAGS) -c $< -o $@ |
@@ -62,6 +60,11 @@ clean: |
@rm -f $(bin)/$(opus) |
test: |
+ @ echo "Test" |
@ echo "sources=$(sources)" |
@ echo "objects=$(objects)" |
@ echo "CFLAGS=$(CFLAGS)" |
+ @ echo "bin=$(bin)" |
+ @ echo "objdir=$(objdir)" |
+ @ echo "opus=$(opus)" |
+ @ echo "name=$(name)" |