summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 7a38b7a..5c602cb 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -6,7 +6,8 @@ CFLAGS = -g -O2 -Wall -DDEBUG
TARGET= libcgrouptest01 \
libcg_ba \
- setuid
+ setuid \
+ pathtest
all: $(TARGET)
@@ -19,5 +20,8 @@ libcg_ba: libcg_ba.cpp
setuid: setuid.c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
+pathtest: pathtest.c
+ $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
+
clean:
\rm -f $(TARGET)