Skip to content

Commit

Permalink
Merge pull request #1 from silverdaz/extended-attributes
Browse files Browse the repository at this point in the history
Extended attributes
  • Loading branch information
silverdaz authored Dec 8, 2024
2 parents 7d58569 + 0fa8eab commit 76bcb3d
Show file tree
Hide file tree
Showing 7 changed files with 372 additions and 304 deletions.
6 changes: 6 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ OBJS = src/fs.o src/sqlite-3.45.2/sqlite3.o src/main.o src/crypt4gh.o $(KEYS_OB

all: $(TARGET)

ifdef NO_DEBUG
CFLAGS+=-DNO_DEBUG
else
CFLAGS+=-g
endif

$(libdir) $(bindir):
mkdir -p $@

Expand Down
8 changes: 4 additions & 4 deletions example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ all: up

debug: debug2

debug1 debug2 debug3: DAZ_FS+= -d
debug1: DAZ_OPTS+=debug=1
debug2: DAZ_OPTS+=debug=2
debug3: DAZ_OPTS+=debug=3
debug1 debug2 debug3: DAZ_FS+= -d -g
debug1: DAZ_OPTS+=local_debug=1
debug2: DAZ_OPTS+=local_debug=2
debug3: DAZ_OPTS+=local_debug=3
up debug1 debug2 debug3: | mnt
$(DAZ_FS) $(DAZ_OPTS:%=-o %) $(DAZ_SQLITE) $(DAZ_MNT)

Expand Down
Binary file modified example/example.sqlite
Binary file not shown.
Loading

0 comments on commit 76bcb3d

Please sign in to comment.