piece-chain

Research & implementation of a Piece Chain
git clone git://src.gearsix.net/piece-chain.git
Log | Files | Refs | Atom | README

Makefile (210B)


      1 CC := gcc
      2 SRC := buf.c
      3 OUT := piecetable
      4 OPTS := -g -Wall -Wpedantic
      5 
      6 all: $(static)
      7 
      8 static:
      9 	${CC} $(OPTS) -c $(SRC) -o $(OUT).o
     10 	ar rcs lib$(OUT).a $(OUT).o
     11 test:
     12 	${CC} $(OPTS) $(SRC) test.c -o $(OUT)-test