From ca57cbdc3f7c383c93b4775d36c7a733dc44137d Mon Sep 17 00:00:00 2001 From: "Simon D. Levy" Date: Sun, 10 Jun 2018 12:09:04 -0400 Subject: [PATCH] Cleanup --- README.md | 3 +- .../wlu/cs/levy/breezyslam/robots/Makefile | 30 ------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 java/edu/wlu/cs/levy/breezyslam/robots/Makefile diff --git a/README.md b/README.md index c6f084d..22f5479 100644 --- a/README.md +++ b/README.md @@ -171,8 +171,7 @@ the Makefile in this directory as well, if you don't use /usr/local/libBreezySLAM/java/edu/wlu/cs/levy/breezyslam/algorithms and BreezySLAM/java/edu/wlu/cs/levy/breezyslam/components, edit the JDKINC variable in the Makefile to reflect where you installed the JDK. -Then run make in these directories, and also in -BreezySLAM/java/edu/wlu/cs/levy/breezyslam/robots. +Then run make in these directories.

diff --git a/java/edu/wlu/cs/levy/breezyslam/robots/Makefile b/java/edu/wlu/cs/levy/breezyslam/robots/Makefile deleted file mode 100644 index 9dd81fe..0000000 --- a/java/edu/wlu/cs/levy/breezyslam/robots/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# Makefile for BreezySLAM robots in Java -# -# Copyright (C) 2014 Simon D. Levy -# -# This code is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This code 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 Lesser General Public License -# along with this code. If not, see . - -BASEDIR = ../../../../../../.. -JAVADIR = $(BASEDIR)/java -JFLAGS = -Xlint - -ALL = WheeledRobot.class - -all: $(ALL) - -WheeledRobot.class: WheeledRobot.java - javac $(JFLAGS) -classpath $(JAVADIR) WheeledRobot.java - -clean: - rm -f *.class *~