mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-22 14:10:39 +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
|
# (c) 2001 jannet it services
|
||||||
# contact@jannet.de
|
# contact@jannet.de
|
||||||
# $Id$
|
# $Id$
|
||||||
|
|
@ -42,10 +41,12 @@ MKFILES = $(wildcard *.mk)
|
||||||
|
|
||||||
CFILES = $(wildcard *.c)
|
CFILES = $(wildcard *.c)
|
||||||
CPPFILES = $(wildcard *.cc *.cpp)
|
CPPFILES = $(wildcard *.cc *.cpp)
|
||||||
|
SFILES = $(wildcard *.S)
|
||||||
UIFILES = $(wildcard *.ui)
|
UIFILES = $(wildcard *.ui)
|
||||||
RCCFILES = $(wildcard *.qrc)
|
RCCFILES = $(wildcard *.qrc)
|
||||||
CALLSRC = $(CFILES) $(CPPFILES)
|
CALLSRC = $(CFILES) $(CPPFILES)
|
||||||
OBJ = $(patsubst %.cpp,%.o,$(patsubst %.cc,%.o,$(patsubst %.c,%.o,$(CALLSRC))))
|
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))))
|
SHOBJS = $(patsubst %.cpp,lib%.so,$(patsubst %.cc,lib%.so,$(patsubst %.c,lib%.so,$(CALLSRC))))
|
||||||
SHSCRIPTS = $(patsubst %.sh.tmpl,%.sh,$(wildcard *.sh.tmpl))
|
SHSCRIPTS = $(patsubst %.sh.tmpl,%.sh,$(wildcard *.sh.tmpl))
|
||||||
SCRIPTS = $(patsubst %.tmpl,%,$(wildcard *.tmpl))
|
SCRIPTS = $(patsubst %.tmpl,%,$(wildcard *.tmpl))
|
||||||
|
|
@ -191,7 +192,7 @@ else
|
||||||
ifneq ($(QT_VERSION),4)
|
ifneq ($(QT_VERSION),4)
|
||||||
LPPFLAGS += -L$(QT_PREFIX)/lib -lqt
|
LPPFLAGS += -L$(QT_PREFIX)/lib -lqt
|
||||||
else
|
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
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue