Skip to content

Commit

Permalink
fix inc
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Nov 18, 2022
1 parent 03255b3 commit a41f6e2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ json.o: json/api.c json/js0n.c json/path.c json/rangstr.c json/indent.c
install:
$(MAKE) -C .. install

sdb_version.h:
$(MAKE) -C .. src/sdb_version.h
include/sdb/version.h:
$(MAKE) -C .. include/sdb/version.h

shared: sdb_version.h
shared: include/sdb/version.h
$(MAKE) libsdb${SOVER}

static: sdb_version.h
static: include/sdb/version.h
$(MAKE) libsdb$(EXT_AR)

sdb_objs: sdb_version.h
sdb_objs: include/sdb/version.h
$(MAKE) ${OBJ}

sdb_objs2: sdb_version.h
sdb_objs2: include/sdb/version.h
$(MAKE) ${SOBJ}

libsdb.lib libsdb$(EXT_AR): sdb_objs
Expand All @@ -59,7 +59,7 @@ ifneq ($(SILENT),)
endif
$(CC) ${LDFLAGS} $(LDFLAGS_SHARED) -o $@ ${SOBJ}

bin_deps: sdb_version.h
bin_deps: include/sdb/version.h
$(MAKE) libsdb.a main.o

bin $(BIN): bin_deps
Expand Down

0 comments on commit a41f6e2

Please sign in to comment.