178 lines
6.4 KiB
Makefile
178 lines
6.4 KiB
Makefile
# Makefile for Jan Electron App - Build, Lint, Test, and Clean
|
|
|
|
REPORT_PORTAL_URL ?= ""
|
|
REPORT_PORTAL_API_KEY ?= ""
|
|
REPORT_PORTAL_PROJECT_NAME ?= ""
|
|
REPORT_PORTAL_LAUNCH_NAME ?= "Jan App"
|
|
REPORT_PORTAL_DESCRIPTION ?= "Jan App report"
|
|
|
|
# Default target, does nothing
|
|
all:
|
|
@echo "Specify a target to run"
|
|
|
|
# Config yarn version
|
|
|
|
config-yarn:
|
|
corepack enable
|
|
corepack prepare yarn@4.5.3 --activate
|
|
yarn --version
|
|
yarn config set -H enableImmutableInstalls false
|
|
|
|
# Installs yarn dependencies and builds core and extensions
|
|
install-and-build: config-yarn
|
|
ifeq ($(OS),Windows_NT)
|
|
echo "skip"
|
|
else ifeq ($(shell uname -s),Linux)
|
|
chmod +x src-tauri/build-utils/*
|
|
endif
|
|
yarn install
|
|
yarn build:tauri:plugin:api
|
|
yarn build:core
|
|
yarn build:extensions && yarn build:extensions-web
|
|
|
|
# Install required Rust targets for macOS universal builds
|
|
install-rust-targets:
|
|
ifeq ($(shell uname -s),Darwin)
|
|
@echo "Detected macOS, installing universal build targets..."
|
|
rustup target add x86_64-apple-darwin
|
|
rustup target add aarch64-apple-darwin
|
|
@echo "Rust targets installed successfully!"
|
|
else
|
|
@echo "Not macOS; skipping Rust target installation."
|
|
endif
|
|
|
|
# Install required Rust targets for Android builds
|
|
install-android-rust-targets:
|
|
@echo "Checking and installing Android Rust targets..."
|
|
@rustup target list --installed | grep -q "aarch64-linux-android" || rustup target add aarch64-linux-android
|
|
@rustup target list --installed | grep -q "armv7-linux-androideabi" || rustup target add armv7-linux-androideabi
|
|
@rustup target list --installed | grep -q "i686-linux-android" || rustup target add i686-linux-android
|
|
@rustup target list --installed | grep -q "x86_64-linux-android" || rustup target add x86_64-linux-android
|
|
@echo "Android Rust targets ready!"
|
|
|
|
# Install required Rust targets for iOS builds
|
|
install-ios-rust-targets:
|
|
@echo "Checking and installing iOS Rust targets..."
|
|
@rustup target list --installed | grep -q "aarch64-apple-ios" || rustup target add aarch64-apple-ios
|
|
@rustup target list --installed | grep -q "aarch64-apple-ios-sim" || rustup target add aarch64-apple-ios-sim
|
|
@rustup target list --installed | grep -q "x86_64-apple-ios" || rustup target add x86_64-apple-ios
|
|
@echo "iOS Rust targets ready!"
|
|
|
|
dev: install-and-build
|
|
yarn download:bin
|
|
yarn dev
|
|
|
|
# Web application targets
|
|
install-web-app: config-yarn
|
|
yarn install
|
|
|
|
dev-web-app: install-web-app
|
|
yarn build:core
|
|
yarn dev:web-app
|
|
|
|
build-web-app: install-web-app
|
|
yarn build:core
|
|
yarn build:web-app
|
|
|
|
serve-web-app:
|
|
yarn serve:web-app
|
|
|
|
build-serve-web-app: build-web-app
|
|
yarn serve:web-app
|
|
|
|
# Mobile
|
|
dev-android: install-and-build install-android-rust-targets
|
|
@echo "Setting up Android development environment..."
|
|
@if [ ! -d "src-tauri/gen/android" ]; then \
|
|
echo "Android app not initialized. Initializing..."; \
|
|
yarn tauri android init; \
|
|
fi
|
|
@echo "Sourcing Android environment setup..."
|
|
@bash autoqa/scripts/setup-android-env.sh echo "Android environment ready"
|
|
@echo "Starting Android development server..."
|
|
yarn dev:android
|
|
|
|
dev-ios: install-and-build install-ios-rust-targets
|
|
@echo "Setting up iOS development environment..."
|
|
ifeq ($(shell uname -s),Darwin)
|
|
@if [ ! -d "src-tauri/gen/ios" ]; then \
|
|
echo "iOS app not initialized. Initializing..."; \
|
|
yarn tauri ios init; \
|
|
fi
|
|
@echo "Checking iOS development requirements..."
|
|
@xcrun --version > /dev/null 2>&1 || (echo "❌ Xcode command line tools not found. Install with: xcode-select --install" && exit 1)
|
|
@xcrun simctl list devices available | grep -q "iPhone\|iPad" || (echo "❌ No iOS simulators found. Install simulators through Xcode." && exit 1)
|
|
@echo "Starting iOS development server..."
|
|
yarn dev:ios
|
|
else
|
|
@echo "❌ iOS development is only supported on macOS"
|
|
@exit 1
|
|
endif
|
|
|
|
# Linting
|
|
lint: install-and-build
|
|
yarn lint
|
|
|
|
# Testing
|
|
test: lint
|
|
yarn download:bin
|
|
ifeq ($(OS),Windows_NT)
|
|
endif
|
|
yarn test
|
|
yarn copy:assets:tauri
|
|
yarn build:icon
|
|
cargo test --manifest-path src-tauri/Cargo.toml --no-default-features --features test-tauri -- --test-threads=1
|
|
cargo test --manifest-path src-tauri/plugins/tauri-plugin-hardware/Cargo.toml
|
|
cargo test --manifest-path src-tauri/plugins/tauri-plugin-llamacpp/Cargo.toml
|
|
cargo test --manifest-path src-tauri/utils/Cargo.toml
|
|
|
|
# Build
|
|
build: install-and-build install-rust-targets
|
|
yarn build
|
|
|
|
clean:
|
|
ifeq ($(OS),Windows_NT)
|
|
-powershell -Command "Get-ChildItem -Path . -Include node_modules, .next, dist, build, out, .turbo, .yarn -Recurse -Directory | Remove-Item -Recurse -Force"
|
|
-powershell -Command "Get-ChildItem -Path . -Include package-lock.json, tsconfig.tsbuildinfo -Recurse -File | Remove-Item -Recurse -Force"
|
|
-powershell -Command "Remove-Item -Recurse -Force ./pre-install/*.tgz"
|
|
-powershell -Command "Remove-Item -Recurse -Force ./extensions/*/*.tgz"
|
|
-powershell -Command "Remove-Item -Recurse -Force ./electron/pre-install/*.tgz"
|
|
-powershell -Command "Remove-Item -Recurse -Force ./src-tauri/resources"
|
|
-powershell -Command "Remove-Item -Recurse -Force ./src-tauri/target"
|
|
-powershell -Command "if (Test-Path \"$($env:USERPROFILE)\jan\extensions\") { Remove-Item -Path \"$($env:USERPROFILE)\jan\extensions\" -Recurse -Force }"
|
|
else ifeq ($(shell uname -s),Linux)
|
|
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
|
|
find . -name ".next" -type d -exec rm -rf '{}' +
|
|
find . -name "dist" -type d -exec rm -rf '{}' +
|
|
find . -name "build" -type d -exec rm -rf '{}' +
|
|
find . -name "out" -type d -exec rm -rf '{}' +
|
|
find . -name ".turbo" -type d -exec rm -rf '{}' +
|
|
find . -name ".yarn" -type d -exec rm -rf '{}' +
|
|
find . -name "packake-lock.json" -type f -exec rm -rf '{}' +
|
|
find . -name "package-lock.json" -type f -exec rm -rf '{}' +
|
|
rm -rf ./pre-install/*.tgz
|
|
rm -rf ./extensions/*/*.tgz
|
|
rm -rf ./electron/pre-install/*.tgz
|
|
rm -rf ./src-tauri/resources
|
|
rm -rf ./src-tauri/target
|
|
rm -rf "~/jan/extensions"
|
|
rm -rf "~/.cache/jan*"
|
|
rm -rf "./.cache"
|
|
else
|
|
find . -name "node_modules" -type d -prune -exec rm -rfv '{}' +
|
|
find . -name ".next" -type d -exec rm -rfv '{}' +
|
|
find . -name "dist" -type d -exec rm -rfv '{}' +
|
|
find . -name "build" -type d -exec rm -rfv '{}' +
|
|
find . -name "out" -type d -exec rm -rfv '{}' +
|
|
find . -name ".turbo" -type d -exec rm -rfv '{}' +
|
|
find . -name ".yarn" -type d -exec rm -rfv '{}' +
|
|
find . -name "package-lock.json" -type f -exec rm -rfv '{}' +
|
|
rm -rfv ./pre-install/*.tgz
|
|
rm -rfv ./extensions/*/*.tgz
|
|
rm -rfv ./electron/pre-install/*.tgz
|
|
rm -rfv ./src-tauri/resources
|
|
rm -rfv ./src-tauri/target
|
|
rm -rfv ~/jan/extensions
|
|
rm -rfv ~/Library/Caches/jan*
|
|
endif
|