51 lines
		
	
	
		
			923 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			923 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Interface: 
 | |
| #   make
 | |
| #   make build
 | |
| #   make format
 | |
| #   make run
 | |
| 
 | |
| # Compiler
 | |
| CC=gcc
 | |
| # CC=tcc # <= faster compilation
 | |
| 
 | |
| # Main file
 | |
| SRC=samples.c
 | |
| OUTPUT=samples
 | |
| 
 | |
| ## Dependencies
 | |
| DEPS='gsl'
 | |
| 
 | |
| ## Flags
 | |
| INCS=`pkg-config --cflags ${DEPS}`
 | |
| LIBS=`pkg-config --libs ${DEPS}`
 | |
| DEBUG= #'-g'
 | |
| STANDARD=-std=c99
 | |
| WARNINGS=-Wall
 | |
| 
 | |
| ## Formatter
 | |
| STYLE_BLUEPRINT=webkit
 | |
| FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT)
 | |
| 
 | |
| ## make build
 | |
| build: $(SRC)
 | |
| 	$(CC) $(DEBUG) $(INCS) $(PLUGS) $(SRC) -o samples $(LIBS)
 | |
| 
 | |
| format: $(SRC)
 | |
| 	$(FORMATTER) $(SRC)
 | |
| 
 | |
| run: $(SRC) $(OUTPUT)
 | |
| 	echo "Increasing stack size limit, because we are dealing with 1M samples"
 | |
| 	ulimit -Ss 256000
 | |
| 	# ^ Increase stack size limit
 | |
| 	# -Ss: the soft limit. If you set the hard limit, you then can't raise it
 | |
| 	# 256000: around 250Mbs, if I'm reading it correctly.
 | |
| 	./$(OUTPUT)
 | |
| 
 | |
| 
 | |
| 
 | |
| # Old:
 | |
| # Link libraries, for good measure
 | |
| # LD_LIBRARY_PATH=/usr/local/lib
 | |
| # export LD_LIBRARY_PATH
 | |
| 
 |