Ignore:
Timestamp:
2000-09-12T11:06:36+12:00 (24 years ago)
Author:
sjboddie
Message:

got 16 bit part compiling on VC++ and gcc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/Makefile

    r1536 r1538  
    33LINK = $(CXX) $(LDFLAGS) -o $@
    44LIBS = -lcomctl32 -lgdi32 -lole32 -lcomdlg32 -luuid
    5 CXXFLAGS = -fvtable-thunks
     5CXXFLAGS = -Wall -fvtable-thunks
    66
    77GSSETUP_OBJS = uninstall.o launchapp.o gsmanifest.o copyprogress.o \
     
    1111               gsprofile.o dirent.o
    1212
    13 all: gssetup.exe
     13SETUP_OBJS = gs16bit.o
     14
     15all: gssetup.exe setup.exe
    1416
    1517gssetup.exe: $(GSSETUP_OBJS)
    1618    $(LINK) $(GSSETUP_OBJS) $(LIBS)
    1719
     20setup.exe: $(SETUP_OBJS)
     21    $(LINK) $(SETUP_OBJS)
     22
    1823$(GSSETUP_OBJS): %.o: %.cpp
     24
     25$(SETUP_OBJS): %.o: %.cpp
    1926
    2027clean:
    2128    del *.o
    2229    del gssetup.exe
     30    del setup.exe
Note: See TracChangeset for help on using the changeset viewer.