Edit

kc3-lang/automake/compile.am

Branch :

  • Show log

    Commit

  • Author : David J. MacKenzie
    Date : 1994-09-20 00:45:32
    Hash : b82209ae
    Message : fix ansi2knr

  • compile.am
  • .SUFFIXES: .c .o .krc .krh .kro
    .c.o:
    	$(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $<
    
    .krc.kro:
    	cp $< krtmp.c
    	$(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) krtmp.c
    	mv krtmp.o $@
    
    .c.krc:
    	$(ANSI2KNR) $< > $@
    
    .h.krh:
    	$(ANSI2KNR) $< > $@