# # Makefile for example programs provided with hp48xgcc. # Copyright (C) 1994 Alex T Ramos. ALL RIGHTS RESERVED. NO WARRANTY. # CC = xgcc CFLAGS = -O2 -I../../../include PROGS = len1 len2 len3 all: $(PROGS) clean: rm -f *.o *.s *.c.* *.bak *~ $(PROGS) a.out