mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:22:43 +00:00 
			
		
		
		
	 ac25438d54
			
		
	
	
		ac25438d54
		
	
	
	
	
		
			
			Allow everything to be built from the top level directory with just 'make', cleaned with 'make clean', and installed with 'make install'. Also support these in any particular subdirectory. Specifying 'make VERBOSE=1' will print each ld/g++/etc. command as it runs. Kernel and early host tools (IPCCompiler, etc.) are built as object.host.o so that they don't conflict with other things built with the cross-compiler.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			224 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			224 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| OBJS = pthread.o
 | |
| 
 | |
| LIBRARY = libpthread.a
 | |
| 
 | |
| install:
 | |
| 	mkdir -p $(SERENITY_BASE_DIR)/Root/usr/lib/
 | |
| 	cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/
 | |
| 	cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
 | |
| 
 | |
| include ../../Makefile.common
 |