Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. # gcc not kos32-gcc
  2. all:
  3.         gcc -c -O2 -nostdinc -nostdlib -m32 -march=i686 -fomit-frame-pointer -fno-builtin -fno-builtin-printf gb.c
  4.         ar -rcs libgb.a gb.o
  5. clean:
  6.         rm -f *.o
  7.         rm -f *.a
  8. install:
  9.         cp libgb.a ../../bin/lib
  10.