Changeset e4cec26 for auto/output


Ignore:
Timestamp:
06/09/09 13:24:34 (15 years ago)
Author:
Mateusz Hromada <ruanda@…>
Branches:
master
Children:
3a2ae91
Parents:
9e0afb5
git-author:
Mateusz Hromada <ruanda@…> (06/09/09 13:24:34)
git-committer:
Mateusz Hromada <ruanda@…> (06/09/09 13:24:34)
Message:

Migration to new build system.

  • gph moved and checked
File:
1 edited

Legend:

Unmodified
Added
Removed
  • auto/output/Makefile

    r9e0afb5 re4cec26  
    1717SORT = $SORT 
    1818PR = $PR 
     19CP = $CP 
     20CHMOD = $CHMOD 
    1921 
    2022CFLAGS = $CFLAGS 
     
    2224LDLIBS = $LDLIBS 
    2325BFLAGS = $BFLAGS 
     26FFLAGS = $FFLAGS 
    2427 
    2528DESTDIR = $DESTDIR 
     
    4346VPATH = ./src 
    4447 
    45 PROGRAMS = tok sen fla 
     48PROGRAMS = tok sen fla gph 
    4649 
    4750TOK_OBJ_FILES = tok.o tok_cmdline.o 
     
    5457 
    5558FLA_OBJ_FILES = fla.o 
     59 
     60GPH_PERL_FILES = gph.pl 
    5661 
    5762CONFIG_FILES = src/config.h Makefile 
     
    107112 
    108113%.c: %.ggo 
    109         gengetopt --input $< --file-name \$(basename \$@) --conf-parser 
     114        gengetopt --input \$< --file-name \$(basename \$@) --conf-parser 
    110115 
    111116%.h: %.ggo 
    112         gengetopt --input $< --file-name \$(basename \$@) --conf-parser 
     117        gengetopt --input \$< --file-name \$(basename \$@) --conf-parser 
    113118 
    114119%: %.o 
    115120        \$(CC) \$? -o \$@ \$(ALL_LDFLAGS) \$(ALL_CFLAGS) \$(ALL_LDLIBS) 
     121 
     122%: %.pl 
     123        \$(CP) \$< \$@ 
     124        \$(CHMOD) a+x \$@ 
    116125 
    117126tok: \$(TOK_OBJ_FILES) 
Note: See TracChangeset for help on using the changeset viewer.