diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-17 23:19:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-17 23:19:14 +0000 |
commit | 29e8558daa51ace34a912dd9a81e77e8ed1e7395 (patch) | |
tree | f0339ae25d1df5d26a8385b0f9a9c015d0764f6c /utils/Burg | |
parent | ab83fe2db9e7ffa82c760d8b1c8dde10e815042c (diff) | |
download | external_llvm-29e8558daa51ace34a912dd9a81e77e8ed1e7395.zip external_llvm-29e8558daa51ace34a912dd9a81e77e8ed1e7395.tar.gz external_llvm-29e8558daa51ace34a912dd9a81e77e8ed1e7395.tar.bz2 |
We need an 'all' target to build burg, add it back
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/Burg')
-rw-r--r-- | utils/Burg/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/Burg/Makefile b/utils/Burg/Makefile index a196d72..2e5e052 100644 --- a/utils/Burg/Makefile +++ b/utils/Burg/Makefile @@ -55,6 +55,8 @@ FE_OBJS = \ symtab.o \ y.tab.o +all: burg + burg: $(BU_OBJS) $(FE_OBJS) $(CC) -o burg $(CFLAGS) $(BU_OBJS) $(FE_OBJS) |