# @(#)makefile 17.1.1.1 (ESO-IPG) 01/25/02 17:57:56 # .COPYRIGHT: Copyright (c) 1988 European Southern Observatory, # all rights reserved # .TYPE make file # .NAME $MIDASHOME/$MIDVERS/test/ftoc/makefile # .LANGUAGE makefile syntax # .ENVIRONMENT Unix Systems. # .COMMENT Generates memory map test command. # # .REMARKS # .AUTHOR Carlos Guirao & Trond Melen # .VERSION 1.1 900702: Implementation # .VERSION 3.0 930308: Using default.mk file include ../../local/default.mk OSSYS = -DSYSV_V2 OUT = test_mmap.exe OBJ = test_mmap.o all: $(OUT) # DEPENDENCIES: test_mmap.exe: $(OBJ2) test_mmap.o $(LDCC) $(OBJ2) test_mmap.o -o $@ clear: rm -f $(OBJ) rm -f *.exe