mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	 b24b111298
			
		
	
	
		b24b111298
		
	
	
	
	
		
			
			Now that we're bringing back the in-kernel virtual console, we should move towards having a single implementation of terminal emulation. This patch rips out the emulation code from the Terminal application and turns it into the beginnings of LibVT. The basic design idea is that users of VT::Terminal will implement and provide a VT::TerminalClient subclass to handle presentation-specific things. We'll need to iterate on this, but it's a start. :^)
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include ../../Makefile.common
 | |
| 
 | |
| OBJS = \
 | |
|     Terminal.o
 | |
| 
 | |
| LIBRARY = libvt.a
 | |
| DEFINES += -DUSERLAND
 | |
| 
 | |
| all: $(LIBRARY)
 | |
| 
 | |
| $(LIBRARY): $(OBJS)
 | |
| 	@echo "LIB $@"; $(AR) rcs $@ $(OBJS) $(LIBS)
 | |
| 
 | |
| .cpp.o:
 | |
| 	@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
 | |
| 
 | |
| -include $(OBJS:%.o=%.d)
 | |
| 
 | |
| clean:
 | |
| 	@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d
 |