#
#
#

include ../Makefile.defs

CFLAGS := $(CFLAGS) -I../mmc2114

OBJS = gpsparse.o

all:  gps.a


clean:
	-rm -f *.o *.a *~  test

gps.a: $(OBJS)
	-rm -f gps.a
	ar q gps.a $(OBJS)


test: test.o gps.a
	$(CC) $(CFLAGS) -o test test.o gps.a

