summaryrefslogtreecommitdiff
path: root/generate/unix/iasl/Makefile
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2013-06-18 12:34:01 -0700
committerRobert Moore <Robert.Moore@intel.com>2013-06-18 12:34:01 -0700
commit88982558e51db85c0bcbed8aef032e66402abaad (patch)
treeeb52458adfd6bfb720d837fc76161a5f8daf6b45 /generate/unix/iasl/Makefile
parentd43e189699ddfaad0d40999076a1ad727ea03f49 (diff)
downloadacpica-88982558e51db85c0bcbed8aef032e66402abaad.tar.gz
Makefiles: Update to improve portability.
1) Use $(MAKE) instead of naked make. 2) Consistently use braces instead of parentheses. Jung-uk Kim <jkim@FreeBSD.org>
Diffstat (limited to 'generate/unix/iasl/Makefile')
-rw-r--r--generate/unix/iasl/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/generate/unix/iasl/Makefile b/generate/unix/iasl/Makefile
index 931620a74..e9520edf4 100644
--- a/generate/unix/iasl/Makefile
+++ b/generate/unix/iasl/Makefile
@@ -238,22 +238,22 @@ include ../Makefile.rules
# Parser and Lexer - intermediate C files
#
$(OBJDIR)/aslcompilerlex.c : $(ASL_COMPILER)/aslcompiler.l $(ASL_COMPILER)/aslsupport.l
- ${LEX} ${LFLAGS} -PAslCompiler -o$@ $(ASL_COMPILER)/aslcompiler.l
+ $(LEX) $(LFLAGS) -PAslCompiler -o$@ $(ASL_COMPILER)/aslcompiler.l
$(OBJDIR)/aslcompilerparse.c $(OBJDIR)/aslcompilerparse.h : $(ASL_COMPILER)/aslcompiler.y
- ${YACC} ${YFLAGS} -pAslCompiler -o$@ $?
+ $(YACC) $(YFLAGS) -pAslCompiler -o$@ $?
$(OBJDIR)/dtparserlex.c : $(ASL_COMPILER)/dtparser.l
- ${LEX} ${LFLAGS} -PDtParser -o$@ $?
+ $(LEX) $(LFLAGS) -PDtParser -o$@ $?
$(OBJDIR)/dtparserparse.c $(OBJDIR)/dtparserparse.h : $(ASL_COMPILER)/dtparser.y
- ${YACC} ${YFLAGS} -pDtParser -o$@ $?
+ $(YACC) $(YFLAGS) -pDtParser -o$@ $?
$(OBJDIR)/prparserlex.c : $(ASL_COMPILER)/prparser.l
- ${LEX} ${LFLAGS} -PPrParser -o$@ $?
+ $(LEX) $(LFLAGS) -PPrParser -o$@ $?
$(OBJDIR)/prparserparse.c $(OBJDIR)/prparserparse.h : $(ASL_COMPILER)/prparser.y
- ${YACC} ${YFLAGS} -pPrParser -o$@ $?
+ $(YACC) $(YFLAGS) -pPrParser -o$@ $?
#