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/helloc/makefile

17 lines
326 B
Makefile

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