$< doesn't work as` I thought; explicily list objs

This commit is contained in:
Damien Miller 2019-11-28 18:09:07 +11:00
parent 18e84bfdc5
commit 5ca52c0f2e

View File

@ -603,7 +603,7 @@ SK_DUMMY_OBJS=\
$(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@
regress/misc/sk-dummy/sk-dummy.so: $(SK_DUMMY_OBJS)
$(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $< \
$(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $(SK_DUMMY_OBJS) \
-L. -Lopenbsd-compat -lopenbsd-compat $(LIBS)
regress-binaries: regress-prep $(LIBCOMPAT) \