source: tag/release-8/etc/src/MakefileOLD @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 868 bytes
Line 
1# ------------------------------------------------------------
2# Compilation Specification File.   Use GNU make !!
3# ------------------------------------------------------------
4YCTOOL=yf2m yrms ylmodf yrcmt Ydf1
5# ------------------------------------------------------------
6CP=cp
7# ------------------------------------------------------------
8CC=gcc
9CFLAGS=-O0 -lm -g -Wall
10CPP=g++
11CPPFLAGS=-O0 -lm -g -Wall
12
13all: $(YCTOOL)
14
15install: all
16        @case `uname -s` in \
17             Linux) \
18                 echo " --> Linux INSTALL ..."; \
19                 $(CP) $(YCTOOL) ../bin/lnx86/ ;; \
20             SunOS) \
21                 echo " --> Sun Solaris INSTALL ..."; \
22                 $(CP) $(YCTOOL) ../bin/solaris/ ;; \
23             Darwin) \
24                 echo " --> MacOS X Darwin INSTALL ..."; \
25                 $(CP) $(YCTOOL) ../bin/darwin/ ;; \
26             *) echo "UNKNOWN LOCAL MACHINE TYPE ($(ULOCAL))";; \
27        esac
28
29clean:
30        rm -f *.o *.a $(YCTOOL)
Note: See TracBrowser for help on using the repository browser.