summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-06 03:20:43 +0200
committerMattias Andrée <maandree@kth.se>2021-04-06 03:20:43 +0200
commit3fbe6edb3f2250fcf494e70105039a4f32c52066 (patch)
tree544ccc9d74fcf15ec9fb23bb27818b355f7b6f86 /Makefile
parentm + Add timer (diff)
downloadpdatools-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 '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 > $@