54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
test-lc: $(LIBS) test-lc.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(filter %.c, $?) $(LDFLAGS) -Wl,-R -Wl,. -L. -lconfig
.PHONY: clean distclean install
clean:
rm -f *.o $(BINS) $(LIBS) libconfig.h *~ test-lc
distclean: clean
rm -f Makefile config.h config.status config.log lc_geterrno.3 lc_process.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3
install: all libconfig.h
-$(INSTALL) -d $(mandir)
-$(INSTALL) -d $(mandir)/man3
-$(INSTALL) -d $(libdir)
-$(INSTALL) -d $(includedir)
|
|
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
test-lc: $(LIBS) test-lc.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(filter %.c, $?) $(LDFLAGS) -Wl,-R -Wl,. -L. -lconfig
.PHONY: clean distclean install
clean:
rm -f *.o $(BINS) $(LIBS) libconfig.h *~ test-lc
distclean: clean
rm -f Makefile config.h config.status config.log lc_geterrno.3 lc_process.3 lc_cleanup.3 lc_process_file.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3 libconfig.3
install: all libconfig.h
-$(INSTALL) -d $(mandir)
-$(INSTALL) -d $(mandir)/man3
-$(INSTALL) -d $(libdir)
-$(INSTALL) -d $(includedir)
|