home *** CD-ROM | disk | FTP | other *** search
- ################################################
- #
- # Makefile for class CWProgFolder
- #
- # (C) Chris Wohlgenuth 1999
- #
- # E-mail: christopher.wohlgemuth@bch.siemens.de
- #
- # http://www.geocities.com/SiliconValley/Sector/5785/
- #
- #
- # This class is intended for programmers and provides functions for some
- # common tasks like:
- # - Adding dialogs as frame controls to WPS folders
- # - Showing 'About'-dialogs
- # - Checking of object pointers
- # - ...
- #
- # The DLL also includes some other functions like:
- #
- # - Query CD drives
- # - Query audio CD tracks
- # - Query audio CD track size
- # - ...
- #
- # Use IBM VAC++ V3.00 and Gnu-make 3.74.1 to compile
- #
- #
- #
- #
- ################################################
-
- #/*
- # * This program is free software; you can redistribute it and/or modify
- # * it under the terms of the GNU General Public License as published by
- # * the Free Software Foundation; either version 2, or (at your option)
- # * any later version.
- # *
- # * This program is distributed in the hope that it will be useful,
- # * but WITHOUT ANY WARRANTY; without even the implied warranty of
- # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # * GNU General Public License for more details.
- # *
- # * You should have received a copy of the GNU General Public License
- # * along with this program; see the file COPYING. If not, write to
- # * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- # */
-
- CC = icc
- LIB_DIR = $d:/emx/lib
- CPPFLAGS = -Ge- /Gm+ -G4 -Gl /O+ -Oc+ -Ol
- DEFS =
- PROGS =
- ODIR = .
- CPPDIR = .
- OBJECTS = progfolder.obj pframeproc.obj storewindow.obj
-
- all: progfldr.dll
-
- progfldr.dll: $(OBJECTS)
- icc -Ge- $(OBJECTS) progfolder.def
- implib progfldr.lib progfolder.def
-
- progfolder.obj: progfolder.cpp progfolder.hh
- icc /Ge- /Gm+ -G4 -Gl /O+ -Oc+ /C+ $<
-
- pframeproc.obj: pframeproc.cpp progfolder.hh
- icc /Ge- /Gm+ -G4 -Gl /O+ -Oc+ /C+ $<
-
- storewindow.obj: storewindow.cpp progfolder.hh
- icc /Ge- /Gm+ -G4 -Gl /O+ -Oc+ /C+ $<
-
- clean:
- -del *.obj
- -del *.dll
-
- install:
-