From 12681346688870e71b1a33dae7e52f9e1302080f Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sat, 14 Jan 2017 11:53:20 -0800 Subject: decompile string_util --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c18522379..221c54e24 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,11 @@ $(C_OBJS): %.o : %.c @echo -e ".text\n\t.align\t2, 0\n" >> $*.s $(AS) $(ASFLAGS) -o $@ $*.s -%.o : dep = $(shell $(SCANINC) $*.s) +ifeq ($(NODEP),) +%.o: dep = $(shell $(SCANINC) $*.s) +else +%.o: dep := +endif $(ASM_OBJS): %.o: %.s $$(dep) $(AS) $(ASFLAGS) -o $@ $< -- cgit v1.2.3