Files
sandbox/bitwise/ion/Makefile
Kyle Isom 39937b6c00 ion: first pass at stretchy buffers.
However, len is expressed as number of elements, and capacity as
number of bytes.
2018-03-15 15:54:22 -07:00

12 lines
161 B
Makefile

TARGET := ion
OBJS := $(TARGET).o
CFLAGS := -g
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
.PHONY: clean
clean:
rm -f $(OBJS) $(TARGET)