diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-03 10:49:55 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-03 10:49:55 -0800 |
commit | 91c8d8e71c7780eb17f5f73bdde89eece42e7e98 (patch) | |
tree | 4f814850702894ca8a54fa2e7a7c6027ee3302b4 /unix/Makefile | |
parent | 9b87b39ab47f381521377d3a9456a0a1651f4cae (diff) | |
parent | b372bfca21ccab593359ef25a0a0c6bf697c8586 (diff) | |
download | micropython-91c8d8e71c7780eb17f5f73bdde89eece42e7e98.tar.gz micropython-91c8d8e71c7780eb17f5f73bdde89eece42e7e98.zip |
Merge pull request #41 from pfalcon/more-mem-stats
Collect more memory statistics
Diffstat (limited to 'unix/Makefile')
-rw-r--r-- | unix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile b/unix/Makefile index 271cf22654..fd5b6b43e0 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -79,7 +79,7 @@ $(BUILD)/%.o: %.c $(BUILD)/%.o: $(PYSRC)/%.S $(CC) $(CFLAGS) -c -o $@ $< -$(BUILD)/%.o: $(PYSRC)/%.c mpconfig.h +$(BUILD)/%.o: $(PYSRC)/%.c mpconfigport.h $(CC) $(CFLAGS) -c -o $@ $< $(BUILD)/emitnx64.o: $(PYSRC)/emitnative.c $(PYSRC)/emit.h @@ -92,7 +92,7 @@ $(BUILD)/emitnthumb.o: $(PYSRC)/emitnative.c $(PYSRC)/emit.h $(BUILD)/vm.o: $(PYSRC)/vm.c $(CC) $(CFLAGS) -O3 -c -o $@ $< -$(BUILD)/main.o: mpconfig.h +$(BUILD)/main.o: mpconfigport.h $(BUILD)/parse.o: $(PYSRC)/grammar.h $(BUILD)/compile.o: $(PYSRC)/grammar.h $(BUILD)/emitcpy.o: $(PYSRC)/emit.h |