tb1/tbo/Makefile

11 lines
106 B
Makefile

CC = cc
CFLAGS = -O2 -Wall
all: tbo
tbo: tbo.c
$(CC) $(CFLAGS) -o tbo tbo.c
clean:
rm -f *~ *.o tbo