diff options
author | mutantturkey <crazycal00@gmail.com> | 2011-05-17 20:23:58 -0400 |
---|---|---|
committer | mutantturkey <crazycal00@gmail.com> | 2011-05-17 20:23:58 -0400 |
commit | a8f412ce4316566396048e394271f6708642e094 (patch) | |
tree | b346019708ecb2d682e81d07b3406f31cc8a6cff /Makefile | |
parent | 40e9cf9bc71fdb8e63239f3fd99b0ef34e81ff13 (diff) |
switched to multiple files, whew thats a relief
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |