aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index 37f7b82..83107d1 100644
--- a/makefile
+++ b/makefile
@@ -1,15 +1,15 @@
CC = gcc
LD = gcc
RM = rm -f
-CFLAGS =
+CFLAGS = -lcwalk
SOURCES := $(wildcard *.c)
OBJECTS := $(patsubst %.c,%.o, $(SOURCES))
all: musicopy
-voerbak: $(OBJECTS)
- $(CC) $(OBJECTS) -o musicopy
+musicopy: $(OBJECTS)
+ $(CC) -static $(OBJECTS) $(CFLAGS) -o musicopy
clean:
$(RM) musicopy