From 3fbe6edb3f2250fcf494e70105039a4f32c52066 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 6 Apr 2021 03:20:43 +0200 Subject: Use libsimple instead of libcore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'Makefile') 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 > $@ -- cgit v1.2.3-70-g09d2