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 ec8bcf5..c967547 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 +OBJ = testhdf5.o tmeta.o tfile.o theap.o tohdr.o LIBS = ../src/libhdf5.a @@ -47,4 +47,7 @@ tfile.o: tfile.c $(INCL) theap.o: theap.c $(INCL) $(CC) $(CFLAGS) $(DEFS) theap.c +tohdr.o: tohdr.c $(INCL) + $(CC) $(CFLAGS) $(DEFS) tohdr.c + |