mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
more death to the parser
This commit is contained in:
parent
ee44312e5c
commit
2e39b26207
5 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@ prefix = /usr
|
|||
includedir = ${prefix}/include/d
|
||||
|
||||
INSTALL = install
|
||||
HEADERS = common.d parser.d
|
||||
HEADERS = common.d parse.d
|
||||
|
||||
install: ${HEADERS}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module psyc.parser;
|
||||
module psyc.parse;
|
||||
|
||||
import psyc.common;
|
||||
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue