mirror of
https://github.com/richardghirst/PiBits.git
synced 2024-11-28 12:24:11 +01:00
11 lines
104 B
Makefile
11 lines
104 B
Makefile
all: PiFmDma
|
|
|
|
CFLAGS = -Wall -g -O2
|
|
LDFLAGS = -lm
|
|
|
|
PiFmDma: PiFmDma.o
|
|
|
|
clean:
|
|
rm -f PiFmDma PiFmDma.o
|
|
|