You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
262B

  1. CC=arm-linux-uclibc-gcc
  2. STRIP=arm-linux-uclibc-strip
  3. #STRIP=echo
  4. CFLAGS=-O3 -I../libfcks/include
  5. OBJS=main.o ../libfcks/libfcks.a
  6. demo: $(OBJS)
  7. $(CC) $(OBJS) -o demo -lm
  8. $(STRIP) demo
  9. ../libfcks/libfcks.a:
  10. make -C ../libfcks/
  11. clean:
  12. rm -f *.o *~ demo