Makefile 299 B

123456789101112131415161718192021
  1. EMHOME=../../..
  2. HDIR = $(EMHOME)/modules/h
  3. INSTALL=$(EMHOME)/modules/install
  4. COMPARE=$(EMHOME)/modules/compare
  5. CFLAGS = -O -I$(HDIR)
  6. SOURCES = Xmalloc.c
  7. OBJECTS = Xmalloc.o
  8. all: $(OBJECTS)
  9. install: all
  10. $(INSTALL) lib/Xmalloc.o
  11. compare: all
  12. $(COMPARE) lib/Xmalloc.o
  13. clean:
  14. rm -f *.[oa]