mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
14 lines
236 B
Makefile
14 lines
236 B
Makefile
|
|
||
|
# minimal makefile setup for ARM linux targets
|
||
|
|
||
|
CC=arm-linux-gnueabihf-gcc
|
||
|
CFLAGS=-Wall -fPIC -g -shared
|
||
|
|
||
|
all: moduletest.so
|
||
|
|
||
|
moduletest.so: moduletest.c
|
||
|
$(CC) $(CFLAGS) -o moduletest.so moduletest.c -ldl
|
||
|
|
||
|
clean:
|
||
|
rm -f moduletest.so
|