This repository contains MadHelix itself, along with compiled libraries with its dependencies.

[[ 🗃 ^ZEkyo madhelix ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/ZEkyo

SSH: git clone USERNAME@vervis.peers.community:ZEkyo

Branches

Tags

v0.0.2 ::

Makefile

# UltrasonicHelix is a Java Swing-based GUI frontend for SoundHelix.
# Copyright (C) 2017 UltrasonicMadness
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Compiles UltrasonicHelix.java, sourcepath src, compiled files going 
# into the bin folder, classpath pointing to all files in lib.
# After this, it creates a jar file from the contents of the bin folder
# and the manifest.text file.
all:
	javac -sourcepath src -d bin -cp "lib/*" src/org/ultrasonicmadness/ultrasonichelix/UltrasonicHelix.java
	jar cfm UltrasonicHelix.jar manifest.txt -C bin/ .

# Removes UltrasonicHelix.jar everything from the bin folder. The bin
# folder is not deleted as this causes problems with the make all
# commands.
clean:
	rm -r bin/*
	rm UltrasonicHelix.jar



[See repo JSON]