Skip to content

Instantly share code, notes, and snippets.

@FlyingJester
Created November 6, 2016 03:31
Show Gist options
  • Save FlyingJester/9c28e150b36a967ffab7f32d515f7524 to your computer and use it in GitHub Desktop.
Save FlyingJester/9c28e150b36a967ffab7f32d515f7524 to your computer and use it in GitHub Desktop.
.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