summaryrefslogtreecommitdiff
path: root/src/components/syslogd/syslog.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/syslogd/syslog.mk')
-rw-r--r--src/components/syslogd/syslog.mk40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/components/syslogd/syslog.mk b/src/components/syslogd/syslog.mk
deleted file mode 100644
index 58ae5e1..0000000
--- a/src/components/syslogd/syslog.mk
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-# standard component Makefile header
-sp := $(sp).x
-dirstack_$(sp) := $(d)
-d := $(dir)
-
-# component specification
-
-OBJS_$(d) :=\
- $(OBJ_DIR)/logging.o\
-
-CFLAGS_LOCAL += -I$(d)
-$(OBJS_$(d)): CFLAGS_LOCAL := -std=gnu99 -W -Wall -Wunused-parameter -g -O3 \
- -I$(d)\
- -I$(d)/../../rt\
- -I$(d)/../../inc\
-
-
-# standard component Makefile rules
-
-DEPS_$(d) := $(OBJS_$(d):.o=.d)
-
-#LIBS_LIST := $(LIBS_LIST) $(LIBRARY)
-LIBS_LIST := $(LIBS_LIST)
-
-CLEAN_LIST := $(CLEAN_LIST) $(OBJS_$(d)) $(DEPS_$(d))
-
--include $(DEPS_$(d))
-
-#$(LIBRARY): $(OBJS)
-# $(MYARCHIVE)
-
-$(OBJ_DIR)/%.o: $(d)/%.c
- $(COMPILE)
-
-# standard component Makefile footer
-
-d := $(dirstack_$(sp))
-sp := $(basename $(sp))