You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
172B

  1. LDFLAGS += -static -lws2_32 -lPsapi
  2. pboost.exe : build/pboost.obj
  3. $(CXX) -o $@ $^ $(LDFLAGS)
  4. build/pboost.obj : pboost.cpp
  5. mkdir build -p
  6. $(CC) $(CFLAGS) -c -o $@ $<