1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/debug/org.eclipse.cdt.debug.application.tests/projects/hello/Makefile
Jeff Johnston c9f9ee1bb9 Initial Standalone debugger SWTBot test
- includes a launch configuration for launching directly from
  an Eclipse session

Change-Id: I238e72894b739f827dd6efba3acef9d304771f0d
2015-01-22 15:00:53 -05:00

15 lines
187 B
Makefile

all: a.out
CFLAGS=-I. -g3 -O2 -Djeff=2
a.out: hello.o x.o
gcc -g -o a.out $?
hello.o: hello.c somehdr.h
gcc -c $(CFLAGS) hello.c
x.o: x.c
gcc -c $(CFLAGS) $<
clean:
rm *.o *.out