apps/gpsutils/minmean: Fix minmea Makefile to find the libapp at the apps/

This commit is contained in:
Alan Carvalho de Assis 2016-06-23 16:22:13 -06:00 committed by Gregory Nutt
parent c470872dae
commit 5db022c65c

View File

@ -51,12 +51,12 @@ SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
BIN = ..\libapps$(LIBEXT)
BIN = ..\..\libapps$(LIBEXT)
else
ifeq ($(WINTOOL),y)
BIN = ..\\libapps$(LIBEXT)
BIN = ..\\..\\libapps$(LIBEXT)
else
BIN = ../libapps$(LIBEXT)
BIN = ../../libapps$(LIBEXT)
endif
endif