Changeset 40 in Main for trunk/Module/Makefile
- Timestamp:
- Sep 17, 2024, 9:31:08 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Module/Makefile
r39 r40 4 4 5 5 .PHONY: all clean 6 .SUFFIXES: .c .o .so6 .SUFFIXES: .c .o $(LIB) 7 7 8 all: mod_ example.so mod_cgi.so8 all: mod_cgi$(LIB) 9 9 10 .o .so:10 .o$(LIB): 11 11 $(CC) $(LDFLAGS) -shared -o $@ $< ../Common/common.a $(LIBS) 12 12 13 13 .c.o: 14 $(CC) $(CFLAGS) - fPIC -c -o $@ $<14 $(CC) $(CFLAGS) -c -o $@ $< 15 15 16 16 clean:
Note:
See TracChangeset
for help on using the changeset viewer.