Changeset 73 for trunk/Makefile


Ignore:
Timestamp:
07/30/06 21:15:56 (18 years ago)
Author:
tim
Message:

fixes for Makefiles to support FreeBSD's iconv

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r67 r73  
    1212CC=gcc
    1313OPTS=-std=gnu89 -pedantic -Wall
     14INC=-I/usr/local/include
     15LIB=-L/usr/local/lib
     16
     17UNAME := $(shell uname)
     18ifeq ($(UNAME),FreeBSD)         
     19  LIB=$(LIB) -liconv
     20endif
    1421
    1522BUILD=$(CURDIR)/build
Note: See TracChangeset for help on using the changeset viewer.