You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 $<
|