14 lines
		
	
	
		
			253 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			253 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: server
 | 
						|
 | 
						|
clean:
 | 
						|
		rm -rf *.o
 | 
						|
		@rm -rf server
 | 
						|
 | 
						|
server: main.o httpd.o
 | 
						|
		gcc -o server $^ -lssl -lcrypto -lsqlite3 -I.
 | 
						|
 | 
						|
main.o: main.c httpd.h
 | 
						|
		gcc -c -o main.o main.c -lssl -lcrypto -sqlite3 -I.
 | 
						|
 | 
						|
httpd.o: httpd.c httpd.h
 | 
						|
		gcc -c -o httpd.o httpd.c
 |