From cffccca0cac1c8604a6633f17ded430d176f52be Mon Sep 17 00:00:00 2001 From: DaveHodder67 Date: Thu, 2 Jul 2015 20:00:52 +0100 Subject: removed redundant rule from Makefile --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3e15b46..698cba9 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ $(SYX): $(HEX) $(HEXTOSYX) $(SIMULATOR) $(HEXTOSYX): $(HOST_GPP) -Ofast -std=c++0x -I./$(TOOLS)/libintelhex/include ./$(TOOLS)/libintelhex/src/intelhex.cc $(TOOLS)/hextosyx.cpp -o $(HEXTOSYX) -# build the simulator and run it (it's a very basic test of the code before it runs on the device!) +# build the simulator (it's a very basic test of the code before it runs on the device!) $(SIMULATOR): $(HOST_GCC) -O0 -std=c99 -Iinclude $(TOOLS)/simulator.c src/app.c -o $(SIMULATOR) @@ -57,9 +57,5 @@ $(BUILDDIR)/%.o: %.c mkdir -p $(dir $@) $(CC) -c $(CFLAGS) $< -o $@ -$(BUILDDIR)/%.o: %.s - mkdir -p $(dir $@) - $(CC) -c $(CFLAGS) $< -o $@ - clean: rm -rf $(BUILDDIR) -- cgit v1.2.1