"Fossies" - the Fresh Open Source Software Archive

Member "sfdisk-3.07/Makefile" (17 May 1998, 473 Bytes) of package /linux/misc/old/sfdisk-3.07.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 PROGNAME = sfdisk
    2 SBINDIR  = /sbin
    3 MANDIR  = /usr/man
    4 
    5 .c.o:
    6 	$(CC) -c $(WARN) $(CFLAGS) $<
    7 
    8 WARN=-Wall -Wparentheses -Wstrict-prototypes
    9 
   10 $(PROGNAME): $(PROGNAME).o
   11 
   12 activate: $(PROGNAME)
   13 	rm -f activate
   14 	ln -s $(PROGNAME) activate
   15 
   16 clean:
   17 	rm -f $(PROGNAME) $(PROGNAME).o
   18 
   19 install:
   20 	install -d -m 755 $(SBINDIR)
   21 	install -m 755 $(PROGNAME) $(SBINDIR)
   22 	install -d -m 755 $(MANDIR)/man8
   23 	install -m 644 $(PROGNAME).8 $(MANDIR)/man8
   24 # activate is not installed by default
   25 
   26