Makefile 262 B

1234567891011
  1. CFLAGS += -I$(abspath ../../../src)
  2. CFLAGS += -I$(abspath ../../../src/utils)
  3. ALL=libhostap_imc.so libhostap_imv.so libhostap2_imc.so libhostap2_imv.so
  4. all: $(ALL)
  5. lib%.so: %.c
  6. $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $<
  7. clean:
  8. rm -f $(ALL)