Blame makefile.msc

Packit 98cdb6
## Makefile for building the Gtk+ dlls with Microsoft C
Packit 98cdb6
## Use: nmake -f makefile.msc
Packit 98cdb6
Packit 98cdb6
PARTS = gdk gtk tests
Packit 98cdb6
Packit 98cdb6
all : \
Packit 98cdb6
	config.h \
Packit 98cdb6
	sub-all
Packit 98cdb6
Packit 98cdb6
sub-all: 
Packit 98cdb6
	for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=all
Packit 98cdb6
Packit 98cdb6
clean : sub-clean
Packit 98cdb6
Packit 98cdb6
sub-clean:
Packit 98cdb6
	for %d in ($(PARTS)) do nmake -nologo -f makefile.msc sub-one THIS=%d TARGET=clean
Packit 98cdb6
Packit 98cdb6
sub-one:
Packit 98cdb6
	@cd $(THIS)
Packit 98cdb6
	@nmake -nologo -f makefile.msc $(TARGET)
Packit 98cdb6
	@cd ..
Packit 98cdb6
Packit 98cdb6
config.h: config.h.win32
Packit 98cdb6
	copy config.h.win32 config.h