comparison 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
comparison
equal deleted inserted replaced
1:1d9d2308c1d2 2:f12b5dd4e18c
1 _CFLAGS = -g -O2 -I../include $(CFLAGS)
2
3 _LDFLAGS = $(LDFLAGS)
4
5 .c.o:
6 $(CC) -c $(_CFLAGS) $< -o $@
7
8 main: main.o
9 $(CC) $(_CFLAGS) -o $@ $^ $(_LDFLAGS)
10
11 clean:
12 $(RM) main main.o