Created
November 6, 2016 03:31
-
-
Save FlyingJester/9c28e150b36a967ffab7f32d515f7524 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.include "system.mk" | |
.c.o: | |
$(XCC) $(XCFLAGS) -c $*.c | |
.cpp.o: | |
$(XCXX) $(XCXXFLAGS) -c $*.cpp | |
.s.o: | |
$(XAS) $*.s $(XASFLAGS) -o $*.o | |
export LIBGCC=${PWD}/libgcc.a | |
.PHONY: clean realclean | |
.IGNORE: clean realclean | |
.SILENT: clean realclean | |
clean: realclean | |
rm *.o *.a *.so |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment