This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats/dl/operme/Makefile
2002-04-05 05:25:10 +00:00

29 lines
431 B
Makefile

include ../../Makefile.inc
INCLUDES = -I../..
SOURCES= operme.c
OBJECTS= operme.o
TARGET= operme.so
all: operme
.c.o:
$(CC) $(CFLAGS) $(INCLUDES) -c $<
operme: $(OBJECTS)
$(CC) -nostdlib -shared -o $(TARGET) $(LIBS) $(OBJECTS)
/bin/cp $(TARGET) ../
clean:
/bin/rm -rf ../$(TARGET)
/bin/rm -rf *.o *.lo *.so
install: cs
$(INSTALL) -m 644 $(TARGET) $(DIRECTORY)/dl
$(OBJECTS): Makefile
operme.o: operme.c om_help.c