abCalc/Make.mac
2013-07-25 13:33:38 -05:00

19 lines
186 B
Plaintext

#
# Make.mac
# By: Jeremy Rand
#
NAME=abCalc
CFLAGS=-I.
all: $(NAME)
include Make.engine
$(NAME): $(SHELL_OBJS)
cc -o $(NAME) $(SHELL_OBJS)
clean:
rm -f $(NAME) $(SHELL_OBJS)