Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
				
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- # -*- mode: makefile; -*-
 - 
 - nonlib_SRCS := $(wildcard JACK/*.C LASH/*.C)
 - 
 - nonlib_SRCS:=$(sort $(nonlib_SRCS))
 - nonlib_OBJS:=$(nonlib_SRCS:.C=.o)
 - 
 - all: nonlib/libnonlib.a
 - 
 - nonlib/libnonlib.a: $(nonlib_OBJS)
 - 	@ ar rcs $@ $(nonlib_OBJS)
 - 
 - .PHONEY: nonlib
 - nonlib: nonlib/libnonlib.a
 - 
 - nonlib_clean:
 - 	rm -f $(nonlib_OBJS) nonlib/libnonlib.a
 
 
  |