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