In a makefile, targets are associated with a series of commands to execute when an action is requested.
Questions tagged [target]
1932 questions
0
votes
1 answer
Makefile called in target
I have a makefile, called "Makefile", and some target in it like:
file.o: file.c Makefile
gcc file.c
What exactly does file.o: file.c Makefile do?

Mike Dannyboy
- 462
- 1
- 4
- 13
0
votes
1 answer
Recursively copied folders in MSBuild are incorrectly copied into one folder
I am writing an MSBuild target/xml configuration file.
Let's say I have two folders in my project source folder which I want to copy over. I want to copy over just these folders (and their contents), and ignore the other folders.
The specification…

dahui
- 2,128
- 2
- 21
- 40
0
votes
4 answers
jquery only fire if div#sidebar exists on page
I'm using the following code to control a div with the ID 'sidebar'
var top = $('#sidebar').offset().top - parseFloat($('#sidebar').css('marginTop').replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y…

Mr Jonny Wood
- 3,806
- 5
- 30
- 42
0
votes
1 answer
Sonar, what is java target
I get the following erro when running sonar:
[11:32:40]: [:sonarTask] 11:32:40.862 [QUIET] [system.out] INFO: EXECUTION FAILURE
[11:32:40]: [:sonarTask] 11:32:40.862 [QUIET] [system.out] INFO:…

user3809938
- 1,114
- 3
- 16
- 35
0
votes
2 answers
Auto-update (calculate) the Excel sheet when a cell is changed
I am using Excel 2010 and I want that the Excel sheet will be updated (calculated) automatically when the value of a cell (Range("B7")) is changed (The Range("B7") is a drop-down list). I am trying to use the intersect-target method like:
Private…

user3714330
- 679
- 12
- 32
0
votes
3 answers
compiler sdk version and target sdk version change in Android studio
I installed Android Studio 1.4 .By default it has settings for compiler sdk and target sdk as MARSHMALLOW . So if i generated final APK after completion of my project, is it works in previous versions of android with out any error ..??

vijay b
- 459
- 1
- 13
- 30
0
votes
0 answers
If cell value changes, extract that value and input onto another worksheet
I'm new to VBA and would really appreciate any guidance on how to perform the following VBA Worksheet Change Event.
What I'm trying to carry out is the following:
If I change a cell value in a particular column, I want to extract a different cell…

Riley Hun
- 2,541
- 5
- 31
- 77
0
votes
0 answers
Remove Target in Rails name, not link
I'm sending my users a update e-mail when one of their documents gets updated using a mailer. The problem is, I'm referencing the recipient in the update email - and the only information I have on them is their e-mail address. If the user gets the…

PSCampbell
- 858
- 9
- 27
0
votes
2 answers
Open a database supplied link in a blank window
I have a MySQL database in my php page that is a repeating field. The raw data being entered into the database is: Link
The code in my page works fine, but when I click on it in the browser, I need it to open in a…

user2930069
- 49
- 1
- 3
0
votes
1 answer
Custom UIView subClass with UIScrollView
I am creating a class, that creates an option bar with multiple scroll views accessible by buttons.
This is how I add the subview with its content:
NSArray *scroll1 = [NSArray…

Zeretyh
- 17
- 1
- 6
0
votes
1 answer
Warning:Unable to find optional library: org.apache.http.legacy occurs in target 21
i have seen this question
Why Warning:Unable to find optional library: org.apache.http.legacy occurs?
and few more but the problem is not solved , i was using target 23 and i didn't want to , so now when i go back to target 21 i receive this error…

Jesus Dimrix
- 4,378
- 4
- 28
- 62
0
votes
1 answer
Wrong target when calling method in custom UINavigationController from UIViewController
I created a subclass of UINavigationController and put a UIBarButtonItem in the navigation bar. The code is as follows:
SharedNavigationController.swift
func showNextButton(nc: UINavigationController) {
print(nc)
let nextButton =…

Charles
- 4,372
- 9
- 41
- 80
0
votes
1 answer
iOS - Target not displaying while adding new file
After merging code, When i tried to add a new file, xCode is not displaying targets to select. Also after adding file, its not showing targets to get selected.
Referenced image is added. Please help to find the root cause and solution of the…

Fring
- 1
- 3
0
votes
1 answer
GridView sometimes doesn't update only first item with Picasso even when I save Targets
I saw a kind of a similar unanswered question, but I can't comment and ask questions there and he is having this problem all the time even on a first load: Picasso doesn't load first image of ArrayAdapter
So the problem is: I have an app where I can…

Dmytro Karataiev
- 1,214
- 1
- 14
- 19
0
votes
1 answer
How to write my code in dojo
$(document).mouseup(function (e) {
var popup = $("#searchProductContainer");
var address_popup = $('#widget_deliveryLoc_Content')
if (!$('#headerSearchList').is(e.target) && !popup.is(e.target) && popup.has(e.target).length == 0 ) {
…

user3156800
- 1
- 1