mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	These changes modify the makefiles so that the output of flex and bison are placed in the SRC directory, not the OBJ directory. It is intended that they be checked in as any other LLVM source so that platforms without convenient access to flex/bison can be compiled. From now on, if you change a .y or .l file you *must* also commit the generated .cpp and .h files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23115 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			13 lines
		
	
	
		
			264 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			264 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ##===- projects/Stacker/lib/compiler/Makefile --------------*- Makefile -*-===##
 | |
| 
 | |
| LEVEL := ../..
 | |
| LIBRARYNAME := stkr_compiler
 | |
| 
 | |
| include $(LEVEL)/Makefile.common
 | |
| 
 | |
| ifdef PARSE_DEBUG
 | |
| INCLUDES += -DPARSE_DEBUG
 | |
| endif
 | |
| 
 | |
| $(ObjDir)/Lexer.o : $(PROJ_SRC_DIR)/StackerParser.h
 |