-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (26 loc) · 694 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (26 loc) · 694 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
33
34
BINARY_NAME=unical
.PHONY: all build clean run config help
all: build
build:
@echo "Building uniCal..."
go build -o bin/$(BINARY_NAME) ./cmd/
clean:
@echo "Cleaning..."
rm -rf bin/
rm -rf ical/
run:
@echo "Running uniCal..."
go run ./cmd/main.go
config:
@echo "Starting configuration UI..."
go run ./cmd/main.go config
install-deps:
@echo "Installing dependencies..."
go mod tidy
help:
@echo "Available commands:"
@echo " make build - Build both binaries"
@echo " make run - Run the calendar filter"
@echo " make config - Run the configuration UI"
@echo " make clean - Clean build artifacts"
@echo " make install-deps - Install Go dependencies"