commit c665162e26e8f73898b8a427d1ab5f919b6cc44e
parent 26126fb0832b74b70517f0a7a07ef50d33d17b67
Author: Jordan Ritter <jpr5@darkridge.com>
Date: Wed, 23 Feb 2005 23:15:12 +0000
minor fix that static/debug targets compile regex dependency (just like
default target)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.in b/Makefile.in
@@ -41,10 +41,10 @@ all: $(TARGET)
$(TARGET): $(REGEX_TARGET) $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(STRIPFLAG) -o $(TARGET) $(OBJS) $(REGEX_OBJS) $(LIBS)
-debug: $(OBJS)
+debug: $(REGEX_TARGET) $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -g -o $(TARGET) $(OBJS) $(REGEX_OBJS) $(LIBS)
-static: $(OBJS)
+static: $(REGEX_TARGET) $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(STRIPFLAG) -o $(TARGET).static -static $(OBJS) $(REGEX_OBJS) $(LIBS)
install: $(TARGET)