Search:

Return to previous page

Contents of file 'epsbb/Makefile':



    1   #
    2   # Makefile primarily designed for use with gcc
    3   #
    4   # Copyright (C) 2003--2005, Fredrik Jonsson <fj@phys.soton.ac.uk>
    5   #
    6   CC     = gcc
    7   CCOPTS = -O2 -Wall -ansi -pedantic
    8   
    9   all: epsbb
   10   
   11   epsbb: epsbb.o
   12   	$(CC) $(CCOPTS) -o epsbb epsbb.o
   13   
   14   epsbb.o: epsbb.c
   15   	$(CC) $(CCOPTS) -c epsbb.c
   16   
   17   clean:
   18   	-rm -Rf *~ *.o *.exe epsbb
   19   
   20   archive:
   21   	make -ik clean
   22   	tar --gzip --directory=../ -cf ../epsbb.tar.gz epsbb
   23   

Return to previous page

Generated by ::viewsrc::

Last modified Wednesday 15 Feb 2023