This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/os2/som/hellocpp/makefile

17 lines
329 B
Makefile

CFLAGS = -zq -I.
hello.exe : hello.obj main.obj
wlink op q sys os2v2 file { $< } lib somtk
hello.obj : hello.cpp hello.xih hello.xh
wpp386 $(CFLAGS) $[@
main.obj : main.cpp hello.xh
wpp386 $(CFLAGS) $[@
hello.xih hello.xh : hello.idl
sc -s"xih;xh" $<
clean : .symbolic
rm -f *.obj *.exe *.xh *.xih *.err