Skip to content

Commit

Permalink
fix meson syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
naguirre committed Oct 22, 2023
1 parent 616bb00 commit 18e9385
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ build-server: build-lib
CGO_LDFLAGS="$(SERVER_LDFLAGS)" $(GOCMD) build -v -o bin/$(BINARY_NAME) .

build-lib: $(SUBDIRS)
@mkdir -p bin
@mv apt/libcalaos-apt.so bin/

$(SUBDIRS):
$(MAKE) -C $@
Expand Down
5 changes: 3 additions & 2 deletions apt/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.PHONY: libcalaos-apt.so

all:
meson setup build
cd build && meson compile && meson install
meson setup build --prefix=/usr
meson -C build compile
meson -C build install

0 comments on commit 18e9385

Please sign in to comment.