diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 27fa332..e06736a 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,9 @@ all: catgirl catgirl: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ +catgirl-no-color: ${OBJS} + ${CC} -DNOA_NO_COLOR=1 ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ + ${OBJS}: chat.h edit.o edit.t input.o: edit.h |