   DPS_INCLUDES = ../../include
 EXTRA_INCLUDES = -I$(DPS_INCLUDES)
        DPS_LIB = ../../lib/dps/libdps.a
    DPSTKXM_LIB = ../../lib/dpstk/libdpstkXm.a
      DPSTK_LIB = ../../lib/dpstk/libdpstk.a
      PSRES_LIB = ../../lib/psres/libpsres.a
LOCAL_LIBRARIES = $(DPSTKXM_LIB) $(DPSTK_LIB) $(PSRES_LIB) $(XMLIB) $(XTOOLLIB) $(DPS_LIB) $(XLIB)
   SYS_LIBRARIES = -lm
         PSWRAP = ../../clients/pswrap/pswrap

SRCS = wraps.psw listwraps.psw main.c canvas.c list.c \
       fontpanel.c xfunctions.c file.c

OBJS =  wraps.o listwraps.o main.o canvas.o list.o \
       fontpanel.o xfunctions.o file.o

DERIVED_FILES = fontwraps.h fontwraps.c listwraps.h listwraps.c\
                wraps.h wraps.c

.SUFFIXES: .psw

.psw.o :
	$(PSWRAP) -o $*.c -h $*.h $<
	$(CC) -c $(CFLAGS) $*.c
	$(RM) $*.c

ComplexProgramTarget(scratchpad)

InstallAppDefaults(Scratchpad)

clean ::
	$(RM) $(DERIVED_FILES)

