buildflags.mk 704 B

123456789101112131415
  1. DEB_CPPFLAGS_MAINT_APPEND = -DTEST_MK=test
  2. include $(srcdir)/mk/buildflags.mk
  3. test:
  4. test "$(CFLAGS)" = "-g -O2 -fstack-protector-strong -Wformat -Werror=format-security"
  5. test "$(CPPFLAGS)" = "-D_FORTIFY_SOURCE=2 -DTEST_MK=test"
  6. test "$(CXXFLAGS)" = "-g -O2 -fstack-protector-strong -Wformat -Werror=format-security"
  7. test "$(FCFLAGS)" = "-g -O2 -fstack-protector-strong"
  8. test "$(FFLAGS)" = "-g -O2 -fstack-protector-strong"
  9. test "$(GCJFLAGS)" = "-g -O2 -fstack-protector-strong"
  10. test "$(LDFLAGS)" = "-Wl,-z,relro"
  11. test "$(OBJCFLAGS)" = "-g -O2 -fstack-protector-strong -Wformat -Werror=format-security"
  12. test "$(OBJCXXFLAGS)" = "-g -O2 -fstack-protector-strong -Wformat -Werror=format-security"