summaryrefslogtreecommitdiff
path: root/Libs/petit_fatfs
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-11-05 04:16:32 +0100
committerXaviDCR92 <xavi.dcr@gmail.com>2017-11-05 04:16:32 +0100
commit2cf2d608af862e812e7fd3ac580f869141a96fa7 (patch)
tree29a356a46635e4bc14e9e7342eb5a41defcab899 /Libs/petit_fatfs
parentb764612a79100271270012053bdb1e4302cd93b7 (diff)
downloadpocketempires-2cf2d608af862e812e7fd3ac580f869141a96fa7.tar.gz
+ Added copy of BitmapEncoder
+ New sprite and unit "Town center" * Provisional collision checking. * Many other modifications.
Diffstat (limited to 'Libs/petit_fatfs')
-rw-r--r--Libs/petit_fatfs/Makefile6
1 files changed, 3 insertions, 3 deletions
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