forked from hebertialmeida/ModelGen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (24 loc) · 637 Bytes
/
Makefile
File metadata and controls
32 lines (24 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
SHELL = /bin/bash
prefix ?= /usr/local
bindir = $(prefix)/bin
REPODIR = $(shell pwd)
BUILDDIR = $(REPODIR)/.build
build:
@swift build \
-c release \
--disable-sandbox \
--build-path "$(BUILDDIR)"
install: build
@install -d "$(bindir)"
@install "$(BUILDDIR)/release/modelgen" "$(bindir)/modelgen"
uninstall:
@rm -rf "$(bindir)/modelgen"
generate-examples: install
(cd Example/Java && modelgen)
(cd Example/Kotlin && modelgen)
(cd Example/Swift/Imutable && modelgen)
(cd Example/Swift/Mutable && modelgen)
(cd Example/Swift/RocketDataImutable && modelgen)
clean:
@rm -rf .build
.PHONY: build install uninstall clean