dos33fsprogs/vaporlock/doubledouble/table/Makefile
2023-05-14 13:48:17 -04:00

16 lines
193 B
Makefile

LFLAGS = -lm
all: sin.table
sin.table: table
./table > sin.table
table: table.o
$(CC) -o table table.o $(LFLAGS)
table.o: table.c
$(CC) -c table.c
clean:
rm -f *~ *.o table sin.table