diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index c967547..c14fe3a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -14,7 +14,7 @@ DEFS = -I../src INCL = ../src/hdf5.h testhdf5.h -OBJ = testhdf5.o tmeta.o tfile.o theap.o tohdr.o +OBJ = testhdf5.o tmeta.o tfile.o theap.o tohdr.o tstab.o LIBS = ../src/libhdf5.a @@ -50,4 +50,7 @@ theap.o: theap.c $(INCL) tohdr.o: tohdr.c $(INCL) $(CC) $(CFLAGS) $(DEFS) tohdr.c +tstab.o: tstab.c $(INCL) + $(CC) $(CFLAGS) $(DEFS) tstab.c + |