# Makefile for gsinstaller LINK = $(CXX) $(LDFLAGS) -o $@ LIBS = -lcomctl32 -lgdi32 -lole32 -lcomdlg32 -luuid CXXFLAGS = -Wall -fvtable-thunks GSSETUP_OBJS = uninstall.o launchapp.o gsmanifest.o copyprogress.o \ filepath.o gsregistry.o configfile.o gsprogman.o \ gsplatform.o stringarray.o configurable.o dirselector.o \ filecopier.o file.o registry.o diskspace.o gsinstall.o \ gsprofile.o dirent.o SETUP_OBJS = gs16bit.o all: gssetup.exe setup.exe gssetup.exe: $(GSSETUP_OBJS) $(LINK) $(GSSETUP_OBJS) $(LIBS) setup.exe: $(SETUP_OBJS) $(LINK) $(SETUP_OBJS) $(GSSETUP_OBJS): %.o: %.cpp $(SETUP_OBJS): %.o: %.cpp clean: del *.o del gssetup.exe del setup.exe