Changeset 009c485 in mainline for tools/xcw/demo/Makefile


Ignore:
Timestamp:
2018-05-01T19:02:23Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
742fc98e
Parents:
5261062
Message:

Always use CC for linking.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/xcw/demo/Makefile

    r5261062 r009c485  
    4343
    4444CC = helenos-cc
    45 LD = helenos-ld
    4645CFLAGS = -std=gnu99 -Wall `helenos-pkg-config --cflags libgui libdraw libmath`
    4746LIBS = `helenos-pkg-config --libs libgui libdraw libmath`
     
    5655
    5756$(output): $(objects)
    58         $(LD) -o $@ $^ $(LIBS)
     57        $(CC) -o $@ $^ $(LIBS)
    5958
    6059%.o: %.c
Note: See TracChangeset for help on using the changeset viewer.