aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormutantturkey <crazycal00@gmail.com>2011-05-17 20:23:58 -0400
committermutantturkey <crazycal00@gmail.com>2011-05-17 20:23:58 -0400
commita8f412ce4316566396048e394271f6708642e094 (patch)
treeb346019708ecb2d682e81d07b3406f31cc8a6cff /Makefile
parent40e9cf9bc71fdb8e63239f3fd99b0ef34e81ff13 (diff)
switched to multiple files, whew thats a relief
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