mirror of
https://github.com/ksherlock/rlint.git
synced 2025-01-17 18:29:50 +00:00
20 lines
400 B
Makefile
20 lines
400 B
Makefile
|
|
OBJ = o/rlint.a o/menu.a o/control.a o/bundle.a o/alert.a
|
|
|
|
|
|
rlint : $(OBJ)
|
|
$(RM) o/menu.root o/control.root o/bundle.root o/alert.root
|
|
iix link o/rlint o/menu o/control o/bundle o/alert keep=$@
|
|
|
|
|
|
o/rlint.a : rlint.c rlint.h
|
|
o/menu.a : menu.c rlint.h
|
|
o/control.a : control.c rlint.h
|
|
o/bundle.a : bundle.c rlint.h
|
|
o/alert.a : alert.c rlint.h
|
|
|
|
o :
|
|
mkdir $@
|
|
|
|
o/%.a : %.c | o
|
|
iix compile $< keep=o/$*
|