summaryrefslogtreecommitdiffstats
path: root/Nate's Position Testing/Shooter Testing/src/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-02-10 14:28:16 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-02-10 14:28:16 -0500
commitc3b516ee1f6e0d317e629ba95abf4ac0cd94f534 (patch)
tree63e615656c03137a57617233fa4a02cf19a3e0a2 /Nate's Position Testing/Shooter Testing/src/Makefile
parent476a0dbf41e14458c52a5cd2fe5b4c050a6c6551 (diff)
revised everything
Diffstat (limited to 'Nate's Position Testing/Shooter Testing/src/Makefile')
-rw-r--r--Nate's Position Testing/Shooter Testing/src/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/Nate's Position Testing/Shooter Testing/src/Makefile b/Nate's Position Testing/Shooter Testing/src/Makefile
deleted file mode 100644
index 865f1e7..0000000
--- a/Nate's Position Testing/Shooter Testing/src/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-# Makefile for compiling PROS projects
-
-# Path to project root (NO trailing slash!)
-ROOT=..
-# Binary output directory
-BINDIR=$(ROOT)/bin
-
-# Nothing below here needs to be modified by typical users
-
-# Include common aspects of this project
--include $(ROOT)/common.mk
-
-ASMSRC:=$(wildcard *.$(ASMEXT))
-ASMOBJ:=$(patsubst %.o,$(BINDIR)/%.o,$(ASMSRC:.$(ASMEXT)=.o))
-HEADERS:=$(wildcard *.$(HEXT))
-### Special section for Cortex projects ###
-HEADERS_2:=$(wildcard ../include/*.$(HEXT))
-### End special section ###
-CSRC=$(wildcard *.$(CEXT))
-COBJ:=$(patsubst %.o,$(BINDIR)/%.o,$(CSRC:.$(CEXT)=.o))
-CPPSRC:=$(wildcard *.$(CPPEXT))
-CPPOBJ:=$(patsubst %.o,$(BINDIR)/%.o,$(CPPSRC:.$(CPPEXT)=.o))
-OUT:=$(BINDIR)/$(OUTNAME)
-
-.PHONY: all
-
-# By default, compile program
-all: .
-
-# Compiles the program if anything is changed
-.: $(ASMOBJ) $(COBJ) $(CPPOBJ)
- @touch .
-
-# Assembly source file management
-$(ASMOBJ): $(BINDIR)/%.o: %.$(ASMEXT)
- @echo AS $<
- @$(AS) $(AFLAGS) -o $@ $<
-
-### Special section for Cortex projects ###
-
-# Object management
-$(COBJ): $(BINDIR)/%.o: %.$(CEXT) $(HEADERS) $(HEADERS_2)
- @echo CC $(INCLUDE) $<
- @$(CC) $(INCLUDE) $(CFLAGS) -o $@ $<
-
-$(CPPOBJ): $(BINDIR)/%.o: %.$(CPPEXT) $(HEADERS) $(HEADERS_2)
- @echo CPC $(INCLUDE) $<
- @$(CPPCC) $(INCLUDE) $(CPPFLAGS) -o $@ $<
-
-### End special section ###