Updated GNU make Makefile for cross compile by changing CC=gcc to CC:=gcc.

This commit is contained in:
skarg
2010-02-27 04:02:27 +00:00
parent 42c01e92f6
commit 2a68202503
18 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for GCC compiler #Makefile to build BACnet Application for GCC compiler
CC = gcc CC := gcc
TARGET = bacdcc TARGET = bacdcc
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = bacepics TARGET = bacepics
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = baciamr TARGET = baciamr
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = bacinitr TARGET = bacinitr
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = mstpcap TARGET = mstpcap
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = bacarf TARGET = bacarf
+1 -1
View File
@@ -1,6 +1,6 @@
#Makefile to build BACnet Application using GCC compiler #Makefile to build BACnet Application using GCC compiler
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacrp TARGET = bacrp
+1 -1
View File
@@ -1,6 +1,6 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacrpm TARGET = bacrpm
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacrd TARGET = bacrd
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacserv TARGET = bacserv
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacts TARGET = bacts
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacucov TARGET = bacucov
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacwh TARGET = bacwh
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = bacwi TARGET = bacwi
+1 -1
View File
@@ -1,5 +1,5 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
CC = gcc CC := gcc
TARGET = bacwir TARGET = bacwir
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacawf TARGET = bacawf
+1 -1
View File
@@ -1,7 +1,7 @@
#Makefile to build BACnet Application for the Linux Port #Makefile to build BACnet Application for the Linux Port
# Compiler to use # Compiler to use
CC = gcc CC := gcc
# Executable file name # Executable file name
TARGET = bacwp TARGET = bacwp
+3 -3
View File
@@ -1,10 +1,10 @@
#Makefile to build BACnet Library with GCC #Makefile to build BACnet Library with GCC
# tools # tools
# ('?=' sets them to gcc and ar unless they are already defined for # (':=' sets them to gcc and ar unless they are already defined for
# a board-specific cross-compiler and archiver) # a board-specific cross-compiler and archiver)
CC ?= gcc CC := gcc
AR ?= ar AR := ar
# target # target
TARGET = bacnet TARGET = bacnet