summaryrefslogblamecommitdiffstats
path: root/common/bbs/Makefile
blob: 6ed3e554bd495d907782256258c24ce34b52b31e (plain) (tree)























                                                   

SRCROOT=    ../..
.include "$(SRCROOT)/pttbbs.mk"

CFLAGS+=    -I$(SRCROOT)/include

OBJS=   log.o   string.o money.o
TARGET= libcmbbs.a


.SUFFIXES: .c .o
.c.o:
    $(CCACHE) $(DIETCC) $(CC) $(CFLAGS) -c $*.c

all: $(TARGET)

install:

$(TARGET): $(OBJS)
    $(AR) cru $@ $(OBJS)
    ranlib $@

clean:
    rm -f $(OBJS) $(TARGET)