From 2cf2d608af862e812e7fd3ac580f869141a96fa7 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Sun, 5 Nov 2017 04:16:32 +0100 Subject: + Added copy of BitmapEncoder + New sprite and unit "Town center" * Provisional collision checking. * Many other modifications. --- Libs/libarduino/Makefile | 2 +- Libs/libgamebuino/Makefile | 2 +- Libs/petit_fatfs/Makefile | 6 +++--- Libs/tinyFAT/Makefile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'Libs') diff --git a/Libs/libarduino/Makefile b/Libs/libarduino/Makefile index a3f5e1d..4f05c46 100644 --- a/Libs/libarduino/Makefile +++ b/Libs/libarduino/Makefile @@ -21,7 +21,7 @@ $(LIBNAME): $(OBJECTS) %.o: %.cpp $(CXX) $< -o $@ $(INCLUDE) $(DEFINE) $(CC_FLAGS) - + %.o: %.c $(CC) $< -o $@ $(INCLUDE) $(DEFINE) $(CC_FLAGS) diff --git a/Libs/libgamebuino/Makefile b/Libs/libgamebuino/Makefile index 28b1e4a..ae98d12 100644 --- a/Libs/libgamebuino/Makefile +++ b/Libs/libgamebuino/Makefile @@ -30,5 +30,5 @@ $(LIBNAME): $(OBJECTS) clean: rm -f $(OBJECTS) rm -f $(LIBS_FOLDER)/$(LIBNAME) - + .PHONY: default clean diff --git a/Libs/petit_fatfs/Makefile b/Libs/petit_fatfs/Makefile index 0d95ef8..6e96f51 100644 --- a/Libs/petit_fatfs/Makefile +++ b/Libs/petit_fatfs/Makefile @@ -12,7 +12,7 @@ LIBNAME=lib$(PROJECT).a OBJECTS=mmc.o petit_fatfs.o pff.o default: $(LIBNAME) - + $(LIBNAME): $(OBJECTS) avr-ar rcs $@ $^ mkdir -p $(INCLUDE_FOLDER)/$(PROJECT) @@ -22,12 +22,12 @@ $(LIBNAME): $(OBJECTS) %.o: %.cpp $(CXX) $< -o $@ $(DEFINE) $(INCLUDE) $(CC_FLAGS) - + %.o: %.c $(CC) $< -o $@ $(DEFINE) $(INCLUDE) $(CC_FLAGS) clean: rm -f $(OBJECTS) rm -f $(LIBS_FOLDER)/$(LIBNAME) - + .PHONY: default clean diff --git a/Libs/tinyFAT/Makefile b/Libs/tinyFAT/Makefile index b99505f..734ff67 100644 --- a/Libs/tinyFAT/Makefile +++ b/Libs/tinyFAT/Makefile @@ -21,7 +21,7 @@ $(LIBNAME): $(OBJECTS) %.o: %.cpp $(CXX) $< -o $@ $(INCLUDE) $(DEFINE) $(CC_FLAGS) - + %.o: %.c $(CC) $< -o $@ $(INCLUDE) $(DEFINE) $(CC_FLAGS) -- cgit v1.2.3