mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
c7d2a71fea
git-svn-id: https://arducopter.googlecode.com/svn/trunk@3017 f9c3cf11-9bcb-44bc-f272-b75c42450872
12 lines
240 B
Makefile
12 lines
240 B
Makefile
VERSION = 1.00
|
|
CC = gcc
|
|
CFLAGS = -I ../../include/common -Wall -Werror -DVERSION=\"$(MAVLINK_VERSION)\" -std=c99
|
|
LDFLAGS = ""
|
|
|
|
OBJ = udp.o
|
|
|
|
udptest: $(OBJ)
|
|
$(CC) $(CFLAGS) -o udptest $(OBJ) $(LDFLAGS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|