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.

19 lines
323B

  1. #CC=arm-linux-uclibc-gcc
  2. #STRIP=arm-linux-uclibc-strip
  3. #STRIP=echo
  4. #CFLAGS=-Wall -Os -pipe -mtune=arm9tdmi -march=armv5te -mabi=apcs-gnu -msoft-float -I../liblicks/include
  5. OBJS=main.o ../liblicks/liblicks.a
  6. BIN=calibration
  7. $(BIN): $(OBJS)
  8. $(CC) $(OBJS) -o $(BIN) -lm
  9. $(STRIP) $(BIN)
  10. clean:
  11. rm -f *.o *~ $(BIN)