Changeset 73 for trunk/src


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/src/Makefile

    r65 r73  
    44
    55REGLOOKUP=$(BUILD_BIN)/reglookup
    6 LIBS=$(wildcard ../lib/*.o)
     6OBJ=$(wildcard ../lib/*.o)
    77FILES=$(REGLOOKUP)
    88
    99all: $(FILES)
    1010
    11 $(REGLOOKUP): reglookup.o $(LIBS)
    12         $(CC) $(CFLAGS) $(OPTS) -o $@ reglookup.o $(LIBS)
     11$(REGLOOKUP): reglookup.o $(OBJ)
     12        $(CC) $(CFLAGS) $(OPTS) $(LIB) -o $@ reglookup.o $(OBJ)
    1313
    1414reglookup.o: reglookup.c
    15         $(CC) $(CFLAGS) $(OPTS) -c -o $@ reglookup.c
     15        $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ reglookup.c
    1616
    1717install:
Note: See TracChangeset for help on using the changeset viewer.