summaryrefslogtreecommitdiffstats
path: root/modules/about/tmp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'modules/about/tmp/Makefile')
-rw-r--r--modules/about/tmp/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/modules/about/tmp/Makefile b/modules/about/tmp/Makefile
deleted file mode 100644
index c415744..0000000
--- a/modules/about/tmp/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-# -*- MakeFile -*-
-
-# MACRO = substitute with this
-
-# directories
-
-LIBALX_INC_DIR = $(LIBALX_DIR)/inc/
-
-INC_DIR = $(ABOUT_DIR)/inc/
-SRC_DIR = $(ABOUT_DIR)/src/
-
-# dependencies
-
-_ALL = about.o
-ALL = $(_ALL) about_mod.o
-
-ABOU_INC_LIBALX = alx_file.h
-ABOU_INC = about.h
-ABOU_DEPS = $(SRC_DIR)/about.c \
- $(patsubst %,$(LIBALX_INC_DIR)/%,$(ABOU_INC_LIBALX)) \
- $(patsubst %,$(INC_DIR)/%,$(ABOU_INC))
-ABOU_INC_DIRS = -I $(INC_DIR) \
- -I $(LIBALX_INC_DIR)
-
-# target: dependencies
-# action
-
-all: $(ALL)
-
-
-about_mod.o: $(_ALL)
- $(Q)$(LD) -r $^ -o $@
- @echo " LD $@"
- @echo ""
-
-
-about.s: $(ABOU_DEPS)
- $(Q)$(CC) $(CFLAGS) $(ABOU_INC_DIRS) -S $< -o $@
- @echo " CC $@"
-about.o: about.s
- $(Q)$(AS) $< -o $@
- @echo " AS $@"
-
-
-clean:
- $(Q)rm -f *.o *.s
-
-################################################################################
-######## End of file ###########################################################
-################################################################################