6 lines
71 B
Makefile
6 lines
71 B
Makefile
# makefile for uirc
|
|
SRC = uirc.c
|
|
|
|
uirc: ${SRC}
|
|
gcc -o uirc -O ${SRC}
|
|
|