This repository has been archived on 2025-02-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CodeBlocksPortable/WATCOM/samples/os2/som/hellocpp/makefile

16 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