Added a rule for building getfsdev and for requiring it to run "test".
authorWayne Davison <wayned@samba.org>
Mon, 9 Aug 2004 20:51:44 +0000 (20:51 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 9 Aug 2004 20:51:44 +0000 (20:51 +0000)
Makefile.in

index b87d0d3..8890960 100644 (file)
@@ -44,7 +44,7 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
 TLS_OBJ = tls.o syscall.o lib/permstring.o
 
 # Programs we must have to run the test cases
-CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) \
+CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) getfsdev$(EXEEXT) \
        trimslash$(EXEEXT) t_unsafe$(EXEEXT) wildtest$(EXEEXT)
 
 # Objects for CHECK_PROGS to clean
@@ -80,6 +80,9 @@ tls$(EXEEXT): $(TLS_OBJ)
 getgroups$(EXEEXT): getgroups.o
        $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS)
 
+getfsdev$(EXEEXT): getfsdev.c
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getfsdev.c
+
 TRIMSLASH_OBJ = trimslash.o syscall.o
 trimslash$(EXEEXT): $(TRIMSLASH_OBJ)
        $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TRIMSLASH_OBJ) $(LIBS)