|
|
|
@ -11,7 +11,7 @@ LIBS = lib:sc.lib lib:amiga.lib lib:debug.lib |
|
|
|
|
|
|
|
|
|
############################################################################### |
|
|
|
|
|
|
|
|
|
$(NAME) : main.o configfile.lib configfile.h |
|
|
|
|
$(NAME) : main.o configfile.lib |
|
|
|
|
slink lib:c.o main.o to $(NAME) noicons lib $(LIBS) configfile.lib $(LFLAGS) |
|
|
|
|
|
|
|
|
|
configfile.lib : configfile.o configmodel.o sectionstore.o cregex/pattern.o cregex/cregex_compile.o cregex/cregex_parse.o cregex/cregex_vm.o containers/stringarray.o containers/linearray.o containers/sectionarray.o containers/sectionmap.o |
|
|
|
@ -31,17 +31,17 @@ cleanlibs: |
|
|
|
|
|
|
|
|
|
############################################################################### |
|
|
|
|
|
|
|
|
|
main.o : main.c |
|
|
|
|
configmodel.o : configmodel.c configmodel.h types.h |
|
|
|
|
configfile.o : configfile.c configfile.h types.h |
|
|
|
|
sectionstore.o : sectionstore.c sectionstore.h types.h |
|
|
|
|
main.o : main.c configfile.h configmodel.h types.h containers/stringarray.h containers/linearray.h |
|
|
|
|
configmodel.o : configmodel.c configmodel.h types.h containers/linearray.h containers/sectionarray.h containers/stringarray.h |
|
|
|
|
configfile.o : configfile.c configfile.h configmodel.h types.h sectionstore.h |
|
|
|
|
sectionstore.o : sectionstore.c configfile.h containers/sectionmap.h containers/sectionarray.h containers/stringarray.h containers/linearray.h cregex/pattern.h sectionstore.h |
|
|
|
|
|
|
|
|
|
cregex/cregex_compile.o : cregex/cregex_compile.c cregex/cregex.h |
|
|
|
|
cregex/cregex_parse.o : cregex/cregex_parse.c cregex/cregex.h |
|
|
|
|
cregex/cregex_vm.o : cregex/cregex_vm.c cregex/cregex.h |
|
|
|
|
cregex/pattern.o : cregex/pattern.c cregex/pattern.h cregex/cregex.h |
|
|
|
|
cregex/pattern.o : cregex/pattern.c cregex/pattern.h cregex/cregex.h containers/stringarray.h |
|
|
|
|
|
|
|
|
|
containers/stringarray.o : containers/stringarray.c containers/stringarray.h types.h |
|
|
|
|
containers/linearray.o : containers/linearray.c containers/linearray.h types.h |
|
|
|
|
containers/sectionarray.o : containers/sectionarray.c containers/sectionarray.h types.h |
|
|
|
|
containers/sectionmap.o : containers/sectionmap.c containers/sectionmap.h types.h |
|
|
|
|
containers/linearray.o : containers/linearray.c containers/linearray.h configmodel.h types.h |
|
|
|
|
containers/sectionarray.o : containers/sectionarray.c containers/sectionarray.h configmodel.h types.h |
|
|
|
|
containers/sectionmap.o : containers/sectionmap.c containers/sectionmap.h configmodel.h types.h |
|
|
|
|