ion: first pass at stretchy buffers.
However, len is expressed as number of elements, and capacity as number of bytes.
This commit is contained in:
12
bitwise/ion/Makefile
Normal file
12
bitwise/ion/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
TARGET := ion
|
||||
OBJS := $(TARGET).o
|
||||
CFLAGS := -g
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) $(CFLAGS) -o $@ $(OBJS)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f $(OBJS) $(TARGET)
|
||||
Reference in New Issue
Block a user