Mercurial > vec
view test/Makefile @ 2:f12b5dd4e18c
*: many new operations and a real test suite
author | Paper <paper@tflc.us> |
---|---|
date | Tue, 22 Oct 2024 22:39:05 -0400 |
parents | |
children | 3c5545b1568f |
line wrap: on
line source
_CFLAGS = -g -O2 -I../include $(CFLAGS) _LDFLAGS = $(LDFLAGS) .c.o: $(CC) -c $(_CFLAGS) $< -o $@ main: main.o $(CC) $(_CFLAGS) -o $@ $^ $(_LDFLAGS) clean: $(RM) main main.o