Usermode/libc++ - Implement map::insert and map::erase
[tpg/acess2.git] / Usermode / Libraries / ld-acess.so_src / rules.mk
index 773d8c1..a2f7ecc 100644 (file)
@@ -1,41 +1,21 @@
-# Acess2 - ld-acess
+# ld-acess
 include $(BASE)header.mk
 
 # Variables
 SRCS := main.c lib.c loadlib.c export.c elf.c pe.c
 SRCS += arch/$(ARCHDIR).$(ASSUFFIX)
 BIN  := $(OUTPUTDIR)Libs/ld-acess.so
-XOBJ := $(call fcn_mkobj,_stublib.o)
-XBIN := $(OUTPUTDIR)Libs/libld-acess.so
 
 CFLAGS-$(DIR) := -Wall -fno-builtin -fno-leading-underscore -fno-stack-protector -fPIC -g
 CPPFLAGS-$(DIR) := $(CPPFLAGS-$(PDIR))
 LDFLAGS-$(DIR) := -g -T $(DIR)/arch/$(ARCHDIR).ld -Map $(call fcn_mkobj,map.txt) --export-dynamic
 
-OBJ := $(call fcn_src2obj,$(SRCS))
-ALL_OBJ := $(ALL_OBJ) $(OBJ)
-OBJ-$(DIR) := $(OBJ) $(XOBJ)
-BIN-$(DIR) := $(BIN) $(XBIN)
-$(foreach f,$(OBJ) $(XOBJ) $(BIN) $(XBIN),$(eval _DIR-$f := $(DIR)))
+include $(BASE)body.mk
 
-# Rules
-.PHONY: all-$(DIR) clean-$(DIR)
-
-all-$(DIR): $(BIN-$(DIR))
-clean-$(DIR): clean-%: 
-       $(eval BIN=$(BIN-$*/))
-       $(eval OBJ=$(OBJ-$*/))
-       $(RM) $(BIN) $(OBJ)
-
-$(BIN): $(OBJ)
-
-# Stub library
-$(XBIN): $(call fcn_mkobj,_stublib.c.o) $(BIN)
-       @echo [LD] -shared -o libld-acess.so
-       @$(LD) -shared -o $@ $<
+$(call fcn_addbin,$(OUTPUTDIR)Libs/libld-acess.so,$(call fcn_src2obj,_stublib.c))
 
 # Handle preprocessed files
-$(DIR)/%: $(DIR)/%.h
+$(DIR)%: $(DIR)%.h
        @echo [CPP] -o $@
        @mkdir -p $(dir $@)
        @$(CPP) $(CPPFLAGS-$(DIR)) -P -D__ASSEMBLER__ $< -o $@

UCC git Repository :: git.ucc.asn.au