more death to the parser

This commit is contained in:
psyc://psyced.org/~lynX 2011-05-09 09:06:52 +02:00
parent ee44312e5c
commit 2e39b26207
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ prefix = /usr
includedir = ${prefix}/include/d
INSTALL = install
HEADERS = common.d parser.d
HEADERS = common.d parse.d
install: ${HEADERS}

View File

@ -1,4 +1,4 @@
module psyc.parser;
module psyc.parse;
import psyc.common;

View File

@ -2,7 +2,7 @@
/**
* @file psyc/parse.h
* @brief Interface for various PSYC parser functions.
* @brief Interface for various PSYC parsing functions.
*
* All parsing functions and the definitions they use are
* defined in this file.

View File

@ -3,8 +3,8 @@ DEBUG = 2
CFLAGS = -I../include -Wall -std=c99 ${OPT}
DIET = diet
S = packet.c parser.c match.c render.c memmem.c itoa.c variable.c text.c
O = packet.o parser.o match.o render.o memmem.o itoa.o variable.o text.o
S = packet.c parse.c match.c render.c memmem.c itoa.c variable.c text.c
O = packet.o parse.o match.o render.o memmem.o itoa.o variable.o text.o
all: CC := ${WRAPPER} ${CC}
all: lib