view Makefile @ 24:78d260256450

Added two simple commands to simplify private chatting, "/to" and "/msg". "/to foo" sets the prv target to username "foo" and "/msg blah" sends messages to the set target.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 06 Jul 2008 13:51:48 +0300
parents 07095e801713
children 3ab7751fdad1
line wrap: on
line source

#
# Configuration settings for typical UNIX
#

# Installation prefix
PREFIX=/usr/local
BINPATH=./

# C-compiler, flags and linker flags
CC=gcc
CFLAGS=-DTH_NO_DEFAULTS -DHAVE_STRING_H -DHAVE_INT_TYPES
LDFLAGS=

#CFLAGS += -DHAVE_STDINT_H
#CFLAGS += -DHAVE_SYS_TYPES_H

# For Solaris 9 with GCC, you need:
#CFLAGS += -DHAVE_UINT_T
#LDFLAGS += -lresolv


# Miscellaneous
RM=rm
EXEEXT=


include Makefile.gen