~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to wless/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SHELL = /bin/sh
2
 
 
3
 
SCIDIR=..
4
 
include ../Makefile.incl
5
 
 
6
 
CFLAGS = $(CC_OPTIONS) $(XFLAGS)
7
 
LINKEROPT=-Wl,-subsystem,windows,-S
8
 
 
9
 
OBJS =  poppad.o popfile.o popfind.o popfont.o popprnt.o rpoppad.o
10
 
 
11
 
all:: $(SCIDIR)/bin/xless
12
 
 
13
 
$(SCIDIR)/bin/xless: $(OBJS) 
14
 
        gcc -o $@ $(OBJS) $(LINKEROPT) $(WIN32LIBS)     
15
 
 
16
 
clean::
17
 
        $(RM) $(OBJS) 
18
 
 
19
 
distclean::
20
 
        $(RM) $(OBJS) $(SCIDIR)/bin/xless 
21
 
 
22
 
 
23
 
rpoppad.res : rpoppad.rc poppad.h poppad.ico
24
 
        $(RC) $(RCVARS) -fo rpoppad.res rpoppad.rc
25
 
 
26
 
rpoppad.o  : rpoppad.res 
27
 
        $(CVTRES)  rpoppad.res rpoppad.o 
28
 
 
29