aboutsummaryrefslogtreecommitdiff
path: root/crypter
diff options
context:
space:
mode:
authortoni <matzeton@googlemail.com>2014-11-26 15:00:55 +0100
committertoni <matzeton@googlemail.com>2014-11-26 15:00:55 +0100
commitbcb9a09d066632f64df9c1bc4568da0d77921f7b (patch)
treef36873f032a8e485fde9430ca86efcca30dd261d /crypter
parent2957353c34508c74c7366ea8ab87267dee2f9674 (diff)
- optimized Makefiles
Diffstat (limited to 'crypter')
-rw-r--r--crypter/.gitignore1
-rw-r--r--crypter/Makefile21
2 files changed, 14 insertions, 8 deletions
diff --git a/crypter/.gitignore b/crypter/.gitignore
index 33b4c3f..e084250 100644
--- a/crypter/.gitignore
+++ b/crypter/.gitignore
@@ -1,2 +1,3 @@
*.h
*_encoder
+*_encoder_x64
diff --git a/crypter/Makefile b/crypter/Makefile
index 0508caa..11a89ac 100644
--- a/crypter/Makefile
+++ b/crypter/Makefile
@@ -3,10 +3,14 @@ ASM := nasm
CC := gcc
LD := ld
XXD := xxd
-CFLAGS = -Wall -fpic -Os
-LDFLAGS =
+CFLAGS ?= -Wall -fpic -Os
+X86_FLAGS := -m32
+X64_FLAGS := -m64
+LDFLAGS ?=
SUBDIR ?= .
-TARGETS = $(patsubst %.asm,%.o,$(wildcard $(SUBDIR)/*.asm)) $(patsubst %.c,%.o,$(wildcard $(SUBDIR)/*.c))
+TARGETS := $(patsubst %.asm,%.o,$(wildcard $(SUBDIR)/*.asm)) $(patsubst %.c,%,$(wildcard $(SUBDIR)/*.c))
+SOURCES_ASM := $(wildcard $(SUBDIR)/*.asm)
+SOURCES_C := $(wildcard $(SUBDIR)/*.c)
SCDIR ?= ..
SCC := $(shell if [ -x $(SCDIR)/sc-test ]; then echo "yes"; else echo "no"; fi)
@@ -16,16 +20,17 @@ all: $(TARGETS)
%.o : %.asm
$(ASM) -o $@ $<
-%.o : %.c
+% : %.c
ifneq ($(SCC),yes)
- $(error Please run 'make' in the main directory)
+ $(error Please run 'make' first in the main directory)
endif
-$(shell $(SCDIR)/sc-test -p $(SUBDIR)/`cat "$<" | sed -n 's/.*#DECODER=//p'` | sed 's/shellcode/decoder/' > $(patsubst %.o,%.h,$@))
-$(shell $(SCDIR)/sc-test -p $(SUBDIR)/`cat "$<" | sed -n 's/.*#SHELLCODE=//p'` >> $(patsubst %.o,%.h,$@))
- $(CC) $(CFLAGS) -D_USE_CFG -o $(patsubst %.c,%,$<) $<
+ $(CC) $(CFLAGS) $(X86_FLAGS) -D_USE_CFG -o $(patsubst %.c,%,$<) $<
+ $(CC) $(CFLAGS) $(X64_FLAGS) -D_USE_CFG -o $(patsubst %.c,%_x64,$<) $<
clean:
- $(RM) -f $(patsubst %.o,%,$(TARGETS)) $(TARGETS) $(patsubst %.o,%.h,$(TARGETS))
- $(RM) -f *.o
+ $(RM) -f $(patsubst %.c,%,$(SOURCES_C)) $(patsubst %.c,%_x64,$(SOURCES_C))
+ $(RM) -f $(patsubst %.asm,%.o,$(SOURCES_ASM))
.PHONY: all clean