source: trunk/gsinstaller/Makefile@ 2535

Last change on this file since 2535 was 1538, checked in by sjboddie, 24 years ago

got 16 bit part compiling on VC++ and gcc

  • Property svn:keywords set to Author Date Id Revision
File size: 730 bytes
Line 
1# Makefile for gsinstaller
2
3LINK = $(CXX) $(LDFLAGS) -o $@
4LIBS = -lcomctl32 -lgdi32 -lole32 -lcomdlg32 -luuid
5CXXFLAGS = -Wall -fvtable-thunks
6
7GSSETUP_OBJS = uninstall.o launchapp.o gsmanifest.o copyprogress.o \
8 filepath.o gsregistry.o configfile.o gsprogman.o \
9 gsplatform.o stringarray.o configurable.o dirselector.o \
10 filecopier.o file.o registry.o diskspace.o gsinstall.o \
11 gsprofile.o dirent.o
12
13SETUP_OBJS = gs16bit.o
14
15all: gssetup.exe setup.exe
16
17gssetup.exe: $(GSSETUP_OBJS)
18 $(LINK) $(GSSETUP_OBJS) $(LIBS)
19
20setup.exe: $(SETUP_OBJS)
21 $(LINK) $(SETUP_OBJS)
22
23$(GSSETUP_OBJS): %.o: %.cpp
24
25$(SETUP_OBJS): %.o: %.cpp
26
27clean:
28 del *.o
29 del gssetup.exe
30 del setup.exe
Note: See TracBrowser for help on using the repository browser.