29 lines
		
	
	
		
			491 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			491 B
		
	
	
	
		
			Makefile
		
	
	
	
CC=gcc
 | 
						|
CFLAGS=-Wall -g
 | 
						|
 | 
						|
all: build-debug run
 | 
						|
 | 
						|
release: build run
 | 
						|
 | 
						|
build-debug: CFLAGS += -DDEBUG=1
 | 
						|
build-debug: build
 | 
						|
 | 
						|
build: build-lib build-main
 | 
						|
 | 
						|
build-main:
 | 
						|
	$(CC) $(CFLAGS) tools/main.c -o bin/picrin -I./include -L./lib -lpicrin -lreadline
 | 
						|
 | 
						|
build-lib:
 | 
						|
	cd src; \
 | 
						|
	  yacc -d parse.y; \
 | 
						|
	  lex scan.l
 | 
						|
	$(CC) $(CFLAGS) -shared src/*.c -o lib/libpicrin.so -I./include -I./extlib
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f src/y.tab.c src/y.tab.h src/lex.yy.c
 | 
						|
	rm -f lib/libpicrin.so
 | 
						|
	rm -f bin/picrin
 | 
						|
 | 
						|
run:
 | 
						|
	bin/picrin
 |