abCalc/Makefile

11 lines
172 B
Makefile
Raw Normal View History

2013-07-24 13:45:33 +00:00
OBJS=abCalc.o abCalcExpr.o abCalcExprReal.o abCalcExprInt.o abCalcStack.o
NAME=abCalc
all: $(NAME)
$(NAME): $(OBJS)
cc -o $(NAME) $(OBJS)
clean:
rm -f $(NAME) $(OBJS)