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 da364d5..76de47e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
include config.mk
-SRC = sb.c defaults.h
+SRC = sb.c callbacks.c
OBJ = ${SRC:.c=.o}
all: options sb
@@ -23,11 +23,11 @@ ${OBJ}: config.mk
sb: ${OBJ}
@echo CC -o $@
- @${CC} -o $@ sb.o ${LDFLAGS}
+ @${CC} -o $@ sb.o callbacks.o ${LDFLAGS}
clean:
@echo cleaning
- @rm -f sb sb.o sb-${VERSION}.tar.gz
+ @rm -f sb ${OBJ} sb-${VERSION}.tar.gz
dist: clean
@echo creating dist tarball