Merge pull request #77 from radare/next

Fix race condition in Makefile
_v3_old
Nguyen Anh Quynh 11 years ago
commit b5a8b3ecba
  1. 4
      Makefile

@ -141,9 +141,11 @@ all: $(LIBRARY) $(ARCHIVE) $(PKGCFGF)
$(MAKE) -C tests
$(INSTALL_DATA) lib$(LIBNAME).$(EXT) tests
$(LIBRARY): diet $(LIBOBJ)
$(LIBRARY): $(LIBOBJ)
$(CC) $(LDFLAGS) $(LIBOBJ) -o $(LIBRARY)
$(LIBOBJ): diet
# generate include/diet.h
diet:
@echo "#ifndef CAPSTONE_DIET_H" > include/diet.h

Loading…
Cancel
Save