forked from beehive-lab/GPULlama3.java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 786 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 786 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
# Simple Makefile for Maven build without tests
.PHONY: build clean package help
# Default target
all: package
# Build the project (clean and package without tests)
build: clean package
# Clean the project
clean:
mvn clean
# Package the project without running tests
package:
mvn package -DskipTests
# Combined clean and package
package-with-clean:
mvn clean package -DskipTests
# Display help
help:
@echo "Available targets:"
@echo " all - Same as 'package' (default)"
@echo " build - Clean and package (without tests)"
@echo " clean - Clean the project"
@echo " package - Package without running tests"
@echo " package-with-clean - Clean and package in one command"
@echo " help - Show this help message"