Hello,

I made a library in Linux with a .h file test.h. So I have libtest.a which has a test.h file in it.

I made a new makefile for a program I have:

stupidprogram: $(OBJECTS)
g++ -dy -o -l. -Ltest stupidprogram $(OBJECTS) $(LDLIBS)

but when I try to make, I get an error indicating the .h file is missing?? ANy idea why it cant see it???

Thanks!