Ignore:
Timestamp:
2001-06-06T16:52:17+12:00 (23 years ago)
Author:
sjboddie
Message:

a few changes to various makefiles, mostly with regard to the phind stuff
which is now compiled in by default

Location:
trunk/gsdl/src/phind/generate
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/phind/generate/Makefile.in

    r1956 r2501  
    5656all : $(EXEC)
    5757
    58 # Phind is still experimental, so it is not installed by default. 
    59 # An explicit "make install-phind" is required to get it on your system.
    60 install :
    61 
    62 
    63 install-phind : $(EXEC)
     58install : $(EXEC)
    6459    install -d $(GSDLHOME)/bin/$(GSDLOS)
    6560    install -m 775 -s $(EXEC) $(GSDLHOME)/bin/$(GSDLOS)
  • trunk/gsdl/src/phind/generate/win32.mak

    r2497 r2501  
    3333CPPFLAGS =
    3434LDFLAGS =
    35 DEFS =
     35DEFS = -D__WIN32__
    3636INCLUDES =
    3737!IF $(USE_STLPORT)
     
    5555HEADERS = suffix.h phrase.h
    5656SOURCES = suffix.cpp phrase.cpp
    57 OBJECTS = phrase.obj
     57OBJECTS = phrase.obj suffix.obj
    5858EXEC    = suffix.exe
    5959
     60all: $(EXEC)
     61
     62install:
     63    copy $(EXEC) "$(GSDLHOME)\bin\windows"
     64
     65clean:
     66    del *.obj
     67    del $(EXEC)
    6068
    6169suffix.exe: $(OBJECTS)
Note: See TracChangeset for help on using the changeset viewer.