mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
defs.mk: Support assembly and Qt Plugins
- Add assembler stuff - Add support for qt plugin stuff
This commit is contained in:
parent
13d4822a0f
commit
a62aa73147
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# (c) 2001 jannet it services
|
||||
# contact@jannet.de
|
||||
# $Id$
|
||||
|
|
@ -42,10 +41,12 @@ MKFILES = $(wildcard *.mk)
|
|||
|
||||
CFILES = $(wildcard *.c)
|
||||
CPPFILES = $(wildcard *.cc *.cpp)
|
||||
SFILES = $(wildcard *.S)
|
||||
UIFILES = $(wildcard *.ui)
|
||||
RCCFILES = $(wildcard *.qrc)
|
||||
CALLSRC = $(CFILES) $(CPPFILES)
|
||||
OBJ = $(patsubst %.cpp,%.o,$(patsubst %.cc,%.o,$(patsubst %.c,%.o,$(CALLSRC))))
|
||||
OBJ += $(patsubst %.S,%.o,$(SFILES))
|
||||
SHOBJS = $(patsubst %.cpp,lib%.so,$(patsubst %.cc,lib%.so,$(patsubst %.c,lib%.so,$(CALLSRC))))
|
||||
SHSCRIPTS = $(patsubst %.sh.tmpl,%.sh,$(wildcard *.sh.tmpl))
|
||||
SCRIPTS = $(patsubst %.tmpl,%,$(wildcard *.tmpl))
|
||||
|
|
@ -191,7 +192,7 @@ else
|
|||
ifneq ($(QT_VERSION),4)
|
||||
LPPFLAGS += -L$(QT_PREFIX)/lib -lqt
|
||||
else
|
||||
LPPFLAGS += -L$(QT_PREFIX)/lib -lQtGui_debug -lQtCore_debug
|
||||
LPPFLAGS += -L$(QT_PREFIX)/lib -lQtSql -lQtNetwork -lQtOpenGL -lQtDesigner_debug -lQtGui_debug -lQtCore_debug
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue