This repository has been archived on 2019-10-19. You can view files and clone it, but cannot push or open issues or pull requests.
projet-gl/Makefile

13 lines
220 B
Makefile
Raw Normal View History

2019-10-02 22:08:43 +02:00
all: build assemble
.PHONY: build
build:
mkdir -p build
2019-10-14 07:22:03 +02:00
javac -Xlint $(shell find src -type f -name '*.java') -d build
2019-10-02 22:08:43 +02:00
assemble:
cd build/; jar cvmf ../MANIFEST.MF ../Elevator.jar *.class
clean:
-rm build/*.class