Makefile.opts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Makefile.opts.in
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation version 2.1
  7. # of the License.
  8. #
  9. # Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
  10. #
  11. CC := /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc
  12. CFLAGS := -g -O2
  13. LDFLAGS :=
  14. CPPFLAGS :=
  15. PACKAGE_NAME := libnl
  16. PACKAGE_VERSION := 1.1.4
  17. LIBNL_LIB := -lm -lpthread
  18. prefix := /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libnl-1.1.4/release
  19. exec_prefix := ${prefix}
  20. libdir := ${exec_prefix}/lib
  21. includedir := ${prefix}/include
  22. mandir := ${prefix}/share/man
  23. sysconfdir := ${prefix}/etc
  24. AR := ar
  25. RM := rm
  26. LN := ln
  27. DEPFLAGS += -M -I../include/ -I. $(CPPFLAGS)
  28. CFLAGS += -g -I./include -I../include -I. $(CPPFLAGS) -D_GNU_SOURCE
  29. MAKEFLAGS += --no-print-directory
  30. ifeq ($(CC),gcc)
  31. CFLAGS += -Wall -ggdb
  32. endif