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
190 B
Makefile
Raw Normal View History

2019-10-02 22:08:43 +02:00
all: build assemble
.PHONY: build
build:
mkdir -p build
javac -Xlint src/*.java -d build
assemble:
cd build/; jar cvmf ../MANIFEST.MF ../Elevator.jar *.class
clean:
-rm build/*.class