Merge pull request #7 from sgk/tools-makefile

Makefile for Linux etc.
This commit is contained in:
OSQZSS 2015-07-01 08:05:39 +09:00
commit 510726ae80

15
tools/Makefile Normal file
View File

@ -0,0 +1,15 @@
# Makefile for Linux etc.
.PHONY: all clean
all: nmea2um
SHELL=/bin/bash
CC=gcc
CFLAGS=-O3
LDFLAGS=-lm
nmea2um: nmea2um.o
${CC} $< ${LDFLAGS} -o $@
clean:
rm -f nmea2um.o nmea2um