diff options
| author | Mattias Andrée <maandree@kth.se> | 2021-04-06 03:20:43 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2021-04-06 03:20:43 +0200 |
| commit | 3fbe6edb3f2250fcf494e70105039a4f32c52066 (patch) | |
| tree | 544ccc9d74fcf15ec9fb23bb27818b355f7b6f86 /Makefile | |
| parent | m + Add timer (diff) | |
| download | pdatools-3fbe6edb3f2250fcf494e70105039a4f32c52066.tar.gz pdatools-3fbe6edb3f2250fcf494e70105039a4f32c52066.tar.bz2 pdatools-3fbe6edb3f2250fcf494e70105039a4f32c52066.tar.xz | |
Use libsimple instead of libcore
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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 > $@ |
