summaryrefslogtreecommitdiff
path: root/framework/Makefile_TPCSSerDaemon
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Makefile_TPCSSerDaemon')
-rwxr-xr-xframework/Makefile_TPCSSerDaemon17
1 files changed, 6 insertions, 11 deletions
diff --git a/framework/Makefile_TPCSSerDaemon b/framework/Makefile_TPCSSerDaemon
index 7eb3ccf..ed600ba 100755
--- a/framework/Makefile_TPCSSerDaemon
+++ b/framework/Makefile_TPCSSerDaemon
@@ -32,7 +32,7 @@
OUTDIR = bin
TARGET = $(OUTDIR)/TPCSSerDaemon
SRCDIR = .
-LD_FLAGS := $(LD_FLAGS) -ldl
+LD_FLAGS := $(LD_FLAGS) -ldl -ltzplatform-config-1.0
ifeq ($(TCS_CC), )
CC = gcc
@@ -79,22 +79,21 @@ SOURCES = $(SRCDIR)/TPCSSerDaemon.c \
OBJECTS = $(OUTDIR)/TPCSSerDaemon.o \
$(OUTDIR)/IpcForkDaemon.o
-MKDEP = mkdep -f .depend
-
$(OUTDIR)/%.o: $(SRCDIR)/%.c
$(CC) $(CFLAGS) -o $(OUTDIR)/$*.o -c $(SRCDIR)/$*.c
-all: $(OUTDIR) .depend $(TARGET)
-
-.depend: $(SOURCES)
- $(MKDEP) $(CFLAGS) $(SOURCES)
+all: $(OUTDIR) $(TARGET)
$(TARGET): $(OBJECTS)
+<<<<<<< HEAD
$(LD) -Wl,-zdefs -o $(TARGET) $(OBJECTS) $(LD_FLAGS) $(PKG_LDFLAGS)
# $(AR) -cr $(TARGET) $(OBJECTS)
# $(STRIP) $(TARGET)
+=======
+ $(CC) -Wl,-zdefs -o $(TARGET) $(OBJECTS) $(LD_FLAGS)
+>>>>>>> Fixed the HTTP test code for TWP testing per Samsung report
$(OUTDIR):
@mkdir $(OUTDIR)
@@ -104,13 +103,9 @@ install: all
cp ${TARGET} ${DESTDIR}/bin/
distclean: clean
- @rm -f .depend
@rm -rf $(OUTDIR)
clean:
@rm -f $(TARGET)
@rm -f $(OBJECTS) *~
@rm -f *.bb *.bbg *.da *.gcov
-
--include .depend
-