Makefile.linux
上传用户:cnryan
上传日期:2008-12-15
资源大小:260k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1.   ############################################################################
  2.   ## 
  3.   ##  Makefile.linux  
  4.   ##
  5.   ##  SNMP++v3.2.21
  6.   ##  -----------------------------------------------
  7.   ##  Copyright (c) 2001-2006 Jochen Katz, Frank Fock
  8.   ##
  9.   ##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   ##  
  11.   ##    Copyright (c) 1996
  12.   ##    Hewlett-Packard Company
  13.   ##  
  14.   ##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   ##  Permission to use, copy, modify, distribute andor sell this software 
  16.   ##  andor its documentation is hereby granted without fee. User agrees 
  17.   ##  to display the above copyright notice and this license notice in all 
  18.   ##  copies of the software and any documentation of the software. User 
  19.   ##  agrees to assume all liability for the use of the software; 
  20.   ##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   ##  suitability of this software for any purpose. It is provided 
  22.   ##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   ##  hereby grants a royalty-free license to any and all derivatives based
  24.   ##  upon this software code base. 
  25.   ##  
  26.   ##  Stuttgart, Germany, Fri Jun 16 17:48:57 CEST 2006 
  27.   ##  
  28.   ##########################################################################*
  29. #
  30. #  Flags: compiler options, search paths
  31. #
  32. COPTIONS = -D_XPG4_EXTENDED -D__unix -Wall # -DHEADER_DES_LOCL_H # -D_DEBUG
  33. TEMPOPTS = -I. 
  34. USEROPTS = -g
  35. CFLAGS  = $(COPTIONS) $(CINCDIRS) $(USEROPTS)
  36. LDFLAGS  = $(CFLAGS)
  37. SHARED  = -fPIC -shared
  38. #
  39. # Compilation rules
  40. #
  41. CC = g++
  42. LD = ld
  43. include common.mk