You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
443 B
20 lines
443 B
Index: Makefile |
|
--- Makefile.orig 2009-02-18 17:06:29 +0100 |
|
+++ Makefile 2009-02-22 23:09:22 +0100 |
|
@@ -21,13 +21,13 @@ |
|
all: $(APP) |
|
|
|
$(APP): $(OBJS) |
|
- gcc $(CFLAGS) -o $@ $(OBJS) $(LIB) |
|
+ $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIB) |
|
|
|
text.o: text.c chars.h |
|
- gcc $(CFLAGS) -c $< |
|
+ $(CC) $(CFLAGS) -c $< |
|
|
|
%.o: %.c |
|
- gcc $(CFLAGS) -c $< |
|
+ $(CC) $(CFLAGS) -c $< |
|
|
|
test: $(APP) |
|
@./$(APP) $(RUNOPT) $(USEDOT) $(PROSPER) -o $(file).tex $(file).fig
|
|
|