
|

The following is a step-by-step guide to getting started with
Doozer. It includes very little detail and assumes that you
as a user of the Doozer system know enough about makefiles to
follow along easily. For more detail, read the
Getting Started page.
-
Copy /home/vr/apps/mk/Makefile.template to your
application source directory and name it Makefile.
-
Open Makefile in a text editor.
-
Set a value for $(APP_NAME) that names your
application binary.
-
Set any extra compiler flags you need to compile your
application's object files.
-
List your source files (but not headers) in the
$(SRCS) variable.
-
List any extra third-party libraries needed to link your
application in $(EXTRA_LIBS) making sure to use
absolute paths whenever the library path is extended.
-
List any system libraries in $(EXTRA_SYS_LIBS).
-
List any directories besides the source direcotry where
source files to be compiled are found.
-
Pick a Doozer application .mk file to include from the
list of files.
-
Include any additional ``add-on'' .mk files from the
second list for additional functionality.
-
Run GNU make (gmake on the VRAC IRIX workstations).
|
|