-rw-r--r-- | Rules.make | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -11,8 +11,13 @@ ifneq ($(CONFIG_DEBUG),) else echo CONFIG -= debug >> $@ echo CONFIG += release >> $@ endif +ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 + echo CONFIG -= qt3 >> $@ +else + echo CONFIG += qt3 >> $@ +endif $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages @echo Generating dependency information... # add to subdir-y, and add descend rules |