summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorragge <ragge>2006-10-07 09:17:26 +0000
committerragge <ragge>2006-10-07 09:17:26 +0000
commit63c9592452b0d31b521171ded20d410f59b85ad3 (patch)
treea147718f751a060ed23e16aa68462d0ddb3fad23 /Makefile.in
parentc4d80494720103d213007c17677d9d6d3bf68582 (diff)
Rewriting finished. The scanner do not even need stdio now.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 0ac3471..aab185a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,7 +2,8 @@
#
# Makefile.in for cpp
#
-XFL=-DCPP_DEBUG -DOLD -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror
+XFL=-DCPP_DEBUG -DOLD -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror \
+ -Wno-pointer-sign
prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -41,6 +42,8 @@ ${DEST}: $(OBJS) $(HEADERS)
$(OBJS): $(HEADERS)
+cpp.o: cpy.o
+
test:
./cpp < tests/test1 > tests/run1
cmp tests/run1 tests/res1