8 lines
73 B
Makefile
8 lines
73 B
Makefile
all: otrx
|
|
|
|
otrx:
|
|
$(CC) $(CFLAGS) -o $@ otrx.c -Wall
|
|
|
|
clean:
|
|
rm -f otrx
|