summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5515f77..7e38b58 100644
--- a/Makefile
+++ b/Makefile
@@ -15,23 +15,20 @@ BIN_ =\
stopwatch\
timer
-OBJ =\
- common.o\
- $(BIN_:=.o)
-
+OBJ = $(BIN_:=.o)
BIN = $(BIN_:=.bin)
MAN1 = $(BIN_:=.1)
all: $(BIN)
$(OBJ): $(@:.o=.c) $(HDR)
-$(BIN): $(@:.bin=.o) common.o
+$(BIN): $(@:.bin=.o)
.c.o:
$(CC) -c -o $@ $< $(CFLAGS)
.o.bin:
- $(CC) -o $@ $< common.o $(LDFLAGS)
+ $(CC) -o $@ $< $(LDFLAGS)
large.h: large.sh
./large.sh > $@