source: trunk/gsinstaller/Makefile@ 1537

Last change on this file since 1537 was 1536, checked in by sjboddie, 24 years ago

Changes to get compiling on VC++ and gcc

  • Property svn:keywords set to Author Date Id Revision
File size: 599 bytes
Line 
1# Makefile for gsinstaller
2
3LINK = $(CXX) $(LDFLAGS) -o $@
4LIBS = -lcomctl32 -lgdi32 -lole32 -lcomdlg32 -luuid
5CXXFLAGS = -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
13all: gssetup.exe
14
15gssetup.exe: $(GSSETUP_OBJS)
16 $(LINK) $(GSSETUP_OBJS) $(LIBS)
17
18$(GSSETUP_OBJS): %.o: %.cpp
19
20clean:
21 del *.o
22 del gssetup.exe
Note: See TracBrowser for help on using the repository browser.