Changeset 1bf74fe7327bbd6240fb9a09383392b155cdd2df
- Timestamp:
- 27/05/06 13:09:56
(3 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1148728196 +0000
- git-parent:
[56674e0fa8dbde833f78795fb09ea471f69cdf10]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1148728196 +0000
- Message:
Initial layout
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r71de7a9 |
r1bf74fe |
|
| 1 | | SOURCES_qt4 = qt4.cpp |
|---|
| 2 | | |
|---|
| 3 | | EXTRA_DIST += \ |
|---|
| 4 | | qt4.hpp |
|---|
| 5 | | |
|---|
| 6 | | TOUI = file_open |
|---|
| | 1 | TOUI = ui/file_open |
|---|
| 7 | 2 | UIH := $(TOUI:%=%.h) |
|---|
| 8 | 3 | |
|---|
| 9 | | TOMOC = main_interface |
|---|
| | 4 | TOMOC = main_interface dialogs_provider dialogs/playlist |
|---|
| 10 | 5 | MOCCPP := $(TOMOC:%=%.moc.cpp) |
|---|
| 11 | 6 | |
|---|
| … | … | |
| 14 | 9 | BUILT_SOURCES += $(UIH) |
|---|
| 15 | 10 | BUILT_SOURCES += $(MOCCPP) |
|---|
| 16 | | |
|---|
| 17 | | nodist_SOURCES_qt4 = $(UIH) $(MOCCPP) |
|---|
| 18 | 11 | |
|---|
| 19 | 12 | $(MOCCPP): %.moc.cpp: %.hpp |
|---|
| … | … | |
| 26 | 19 | |
|---|
| 27 | 20 | endif |
|---|
| | 21 | |
|---|
| | 22 | SOURCES_qt4 = qt4.cpp \ |
|---|
| | 23 | main_interface.cpp \ |
|---|
| | 24 | dialogs_provider.cpp \ |
|---|
| | 25 | dialogs/playlist.cpp \ |
|---|
| | 26 | main_interface.moc.cpp \ |
|---|
| | 27 | dialogs_provider.moc.cpp \ |
|---|
| | 28 | dialogs/playlist.moc.cpp |
|---|
| | 29 | $(NULL) |
|---|
| | 30 | |
|---|
| | 31 | # Why do I have to put it manually ?? |
|---|
| | 32 | |
|---|
| | 33 | EXTRA_DIST += \ |
|---|
| | 34 | qt4.hpp \ |
|---|
| | 35 | main_interface.hpp \ |
|---|
| | 36 | dialogs_provider.hpp |
|---|