view Makefile.gen @ 54:f6666e7c1a48

More comments.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 10 Nov 2008 08:32:49 +0200
parents 512775f6b081
children ff5d74f0d428
line wrap: on
line source

CFLAGS+=-g -W -Wall
COMP=$(CC) $(CFLAGS)

#
# Objects
#
NNCHAT_BIN=$(BINPATH)nnchat$(EXEEXT)

TARGETS=$(NNCHAT_BIN)


#
# Target rules
#
all: $(TARGETS)

%.o: %.c %.h
	$(COMP) -c -o $@ $<

$(NNCHAT_BIN): nnchat.c th_util.o th_string.o th_args.o
	$(COMP) -o $@ $+ $(LDFLAGS) -lcurses

#
# Special targets
#
clean:
	$(RM) -f $(TARGETS) *.o

srcclean: clean
	$(RM) -f *~