aboutsummaryrefslogtreecommitdiff
path: root/daemon/Makefile
diff options
context:
space:
mode:
authorDrew Richardson <drew.richardson@arm.com>2012-03-01 12:00:00 -0800
committerDrew Richardson <drew.richardson@arm.com>2014-12-19 15:24:06 -0800
commit3de04f9cecf0d50e895f9fe0164ecbbbae997319 (patch)
tree9bc04b0b4ad5b313559479d6bd12942961017b7d /daemon/Makefile
parent689b7539711ab098911503808cc3e24307d9bcf7 (diff)
gator: Version 5.95.9
Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Diffstat (limited to 'daemon/Makefile')
-rw-r--r--daemon/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/daemon/Makefile b/daemon/Makefile
index 2a41e31..4aaf219 100644
--- a/daemon/Makefile
+++ b/daemon/Makefile
@@ -19,14 +19,13 @@ CPP=$(CROSS_COMPILE)g++
# -mthumb-interwork is required for interworking to ARM or Thumb stdlibc
CFLAGS=-O3 -Wall -Werror -march=armv5t -mthumb-interwork
TARGET=gatord
-CPP_SRC = $(wildcard *.cpp) $(wildcard ../../reptilia/*.cpp)
+CPP_SRC = $(wildcard *.cpp)
TGT_OBJS = $(CPP_SRC:%.cpp=%.o)
-INCLUDES = -I../../reptilia
all: $(TARGET)
%.o: %.cpp *.h
- $(CPP) $(INCLUDES) -c $(CFLAGS) -o $@ $<
+ $(CPP) -c $(CFLAGS) -o $@ $<
$(TARGET): convert $(TGT_OBJS)
$(CPP) -s -o $@ $(TGT_OBJS) -lc -lrt -lpthread
@@ -38,4 +37,4 @@ convert:
xxd -i configuration.xml > configuration_xml.h
clean:
- rm -f *.o $(TARGET) events.xml events_xml.h configuration_xml.h ../../reptilia/*.o
+ rm -f *.o $(TARGET) events.xml events_xml.h configuration_xml.h