Mostly motivated by wanting to build with the ncurses in pkgsrc because it supports italics.
		
			
				
	
	
		
			28 lines
		
	
	
		
			384 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			384 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
 | 
						|
LDLIBS = -lcrypto -ltls -lncursesw
 | 
						|
 | 
						|
-include config.mk
 | 
						|
 | 
						|
OBJS += chat.o
 | 
						|
OBJS += command.o
 | 
						|
OBJS += config.o
 | 
						|
OBJS += edit.o
 | 
						|
OBJS += handle.o
 | 
						|
OBJS += irc.o
 | 
						|
OBJS += ui.o
 | 
						|
 | 
						|
dev: tags all
 | 
						|
 | 
						|
all: catgirl
 | 
						|
 | 
						|
catgirl: ${OBJS}
 | 
						|
	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
 | 
						|
 | 
						|
${OBJS}: chat.h
 | 
						|
 | 
						|
tags: *.h *.c
 | 
						|
	ctags -w *.h *.c
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f tags catgirl ${OBJS}
 |