Makefile Template

# Begin user code block
# End user code block

#
# README: Portions of this file are merged at file generation
# time. Edits can be made *only* in between specified code blocks, look
# for keywords and .
#
#
# Created by BuilderXcessory PRO Version 6.1.3
# Generated by Code Generator Xcessory 6.1.3 (10/08/04) CGX Scripts 6.1 Motif 2.1
#
#

# Begin user code block
USER_SRCS =
USER_OBJS =
USER_CFLAGS =
USER_LIBRARIES =

# End user code block

RM = rm -f
CC = gcc
CFLAGS = $(USER_CFLAGS)
LIBS = $(USER_LIBRARIES) -lXm -lXt -lSM -lICE -lXp -lXext -lX11

OFILES = $(USER_OBJS) \
main-c.o \
creation-c.o \
callbacks-c.o \
bxutils-c.o

FILES = $(USER_SRCS) \
main-c.c \
creation-c.c \
callbacks-c.c \
bxutils-c.c

# User-specified options:

all: Main

Main: $(OFILES)
$(CC) $(CFLAGS) $(OFILES) $(LIBS) -o $@

ocodecenter::
#load $(CFLAGS) $(OFILES) $(LIBS)

codecenter::
#load $(CFLAGS) $(FILES) $(LIBS)

clean::
$(RM) $(OFILES) Main

# Begin user code block
# End user code block