mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:52:45 +00:00 
			
		
		
		
	 c7ea94697e
			
		
	
	
		c7ea94697e
		
	
	
	
	
		
			
			We've been using a per-directory "install.sh" for some time, so let's get rid of the old way of doing things.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include ../../Makefile.common
 | |
| 
 | |
| LIBRARY = libhtml.a
 | |
| 
 | |
| all: $(LIBRARY) tho
 | |
| 
 | |
| include Makefile.shared
 | |
| 
 | |
| tho: $(TEST_OBJS) $(LIBRARY)
 | |
| 	$(LD) -o $@ $(LDFLAGS) -L. $(TEST_OBJS) -lhtml -lgui -lcore -lc
 | |
| 
 | |
| $(LIBRARY): $(LIBHTML_OBJS)
 | |
| 	@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
 |